/** * Base interface used by components that support dark mode. * * @public */ export default interface DarkModeProps { /** * Renders the component with dark mode styles. * * @default false */ darkMode?: boolean; } export declare const Theme: { readonly Light: "light"; readonly Dark: "dark"; }; export type Theme = (typeof Theme)[keyof typeof Theme]; //# sourceMappingURL=index.d.ts.map