import React from 'react'; export type SwitchSize = 'sm' | 'md' | 'lg'; export type SwitchVariant = 'accent' | 'primary' | 'secondary' | 'static-white' | 'static-black'; export interface SwitchProps extends Omit, 'size' | 'onChange'> { checked: boolean; onChange: (checked: boolean) => void; label?: string; size?: SwitchSize; variant?: SwitchVariant; disabled?: boolean; } export declare const Switch: React.FC;