export type SelectionControlState = 'default' | 'selected' | 'done' | 'done-selected'; export interface SelectionControlProps { children: React.ReactNode; state?: SelectionControlState; onClick?: React.MouseEventHandler; disabled?: boolean; error?: boolean; 'aria-label'?: string; className?: string; style?: React.CSSProperties; } export declare function SelectionControl({ children, state, onClick, disabled, error, 'aria-label': ariaLabel, className, style, }: SelectionControlProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SelectionControl.d.ts.map