import React from 'react'; export interface SwitchContextType { switchId: string; size: 'sm' | 'md'; disabled?: boolean; hasError?: boolean; helperId?: string; errorId?: string; } export declare const useSwitchContext: () => SwitchContextType; export interface SwitchProviderProps { value: SwitchContextType; children: React.ReactNode; } export declare const SwitchProvider: React.FC; //# sourceMappingURL=SwitchContext.d.ts.map