import { View } from 'react-native'; import { ToggleButtonProps, ToggleGroupProps } from './types'; /** * A toggle button component for use within toggle groups or as standalone controls. * Supports selection states, various sizes, and visual variants. */ export declare const ToggleButton: import("../../core/factory").PlatformBlocksComponent<{ props: ToggleButtonProps; ref: View; }>; /** * A group of toggle buttons that manages selection state and provides keyboard navigation. * Supports single or multi-selection modes with customizable orientation and styling. */ export declare const ToggleGroup: import("../../core/factory").PlatformBlocksComponent<{ props: ToggleGroupProps; ref: View; }>;