import type { ChangeEventHandler, CSSProperties, FocusEventHandler, ReactNode } from 'react'; import { Option } from './Option'; type SwitchButtonProps = { name?: string; children: ReactNode; onBlur?: FocusEventHandler; onChange: ChangeEventHandler; onFocus?: FocusEventHandler; tooltip?: string; value: string; className?: string; 'data-testid'?: string; size?: 'small' | 'medium'; sentiment?: 'primary' | 'neutral'; style?: CSSProperties; }; export declare function SwitchButton({ value, onChange, onFocus, onBlur, name, size, sentiment, tooltip, className, children, 'data-testid': dataTestId, style, }: SwitchButtonProps): import("react").JSX.Element; export declare namespace SwitchButton { var displayName: string; export { Option }; } export {}; //# sourceMappingURL=index.d.ts.map