import type { ReactNode } from 'react'; import type { TMapHovered, TMapKeyboardFocused } from 'refun'; export declare type TButtonIconSwitch = { size?: number; accessibilityLabel?: string; isChecked: boolean; children: ReactNode; onToggle: () => void; } & TMapHovered & TMapKeyboardFocused; export declare const ButtonIconSwitch: import("refun").TComponent;