15 lines
548 B
TypeScript
15 lines
548 B
TypeScript
|
|
import type { ToggleSwitchTokenSections } from '@primeuix/themes/types/toggleswitch';
|
||
|
|
|
||
|
|
export * from '@primeuix/themes/types/toggleswitch';
|
||
|
|
|
||
|
|
declare const root: ToggleSwitchTokenSections.Root;
|
||
|
|
declare const handle: ToggleSwitchTokenSections.Handle;
|
||
|
|
declare const colorScheme: ToggleSwitchTokenSections.ColorScheme;
|
||
|
|
declare const _default: {
|
||
|
|
root: ToggleSwitchTokenSections.Root;
|
||
|
|
handle: ToggleSwitchTokenSections.Handle;
|
||
|
|
colorScheme: ToggleSwitchTokenSections.ColorScheme;
|
||
|
|
};
|
||
|
|
|
||
|
|
export { colorScheme, _default as default, handle, root };
|