import type { ReactNode } from 'react'; import type { TMapHovered, TMapKeyboardFocused } from 'refun'; export declare type TSwitchPopover = { size?: number; accessibilityLabel?: string; children: ReactNode; } & TMapHovered & TMapKeyboardFocused; export declare const SwitchPopover: import("refun").TComponent;