export interface ColorSwitchProps { /** id of target element if you are applying theme only to specific container. Should be same as corresponding ThemeSwitcher, etc. */ targetId?: string; /** Diameter of the color switch */ size?: number; /** Skip system colorScheme while toggling */ skipSystem?: boolean; } /** * Color switch button to quickly set user preference. * Use same targetId for corresponding components and hooks if you are using themes for specific container only. * * @example * ```ts * * ``` * * Custom size & skipSystem * * ```ts * * ``` */ export declare function ColorSwitch({ size, skipSystem, targetId }: ColorSwitchProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=color-switch.d.ts.map