/// export interface ControlsProps { showResult?: boolean; onCancel?: () => void; onConfirm?: () => void; confirmText?: string; cancelText?: string; children?: React.ReactNode; } export declare function Controls(props: ControlsProps): JSX.Element;