19 lines
741 B
TypeScript
19 lines
741 B
TypeScript
import type { FieldsetTokenSections } from '@primeuix/themes/types/fieldset';
|
|
|
|
export * from '@primeuix/themes/types/fieldset';
|
|
|
|
declare const root: FieldsetTokenSections.Root;
|
|
declare const legend: FieldsetTokenSections.Legend;
|
|
declare const toggleIcon: FieldsetTokenSections.ToggleIcon;
|
|
declare const content: FieldsetTokenSections.Content;
|
|
declare const colorScheme: FieldsetTokenSections.ColorScheme;
|
|
declare const _default: {
|
|
root: FieldsetTokenSections.Root;
|
|
legend: FieldsetTokenSections.Legend;
|
|
toggleIcon: FieldsetTokenSections.ToggleIcon;
|
|
content: FieldsetTokenSections.Content;
|
|
colorScheme: FieldsetTokenSections.ColorScheme;
|
|
};
|
|
|
|
export { colorScheme, content, _default as default, legend, root, toggleIcon };
|