import type { ChangeEvent, Dispatch, FocusEventHandler, SetStateAction } from 'react'; export type RefOptionType = { value: string; current: HTMLInputElement; }; type SwitchButtonContextValue = { localValue?: string; name?: string; onBlur?: FocusEventHandler; onFocus?: FocusEventHandler; size: 'small' | 'medium'; handleOnChange: (event: ChangeEvent) => void; refOptions: RefOptionType[]; setRefOptions: Dispatch>; sentiment: 'neutral' | 'primary'; }; export declare const SwitchButtonContext: import("react").Context; export declare const useSwitchButton: () => SwitchButtonContextValue; export {}; //# sourceMappingURL=SwitchButtonContext.d.ts.map