17 lines
614 B
TypeScript
17 lines
614 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 _default: {
|
||
|
|
root: FieldsetTokenSections.Root;
|
||
|
|
legend: FieldsetTokenSections.Legend;
|
||
|
|
toggleIcon: FieldsetTokenSections.ToggleIcon;
|
||
|
|
content: FieldsetTokenSections.Content;
|
||
|
|
};
|
||
|
|
|
||
|
|
export { content, _default as default, legend, root, toggleIcon };
|