export interface SettingsToggleRowProps { checked: boolean; isUpdateInProgress: boolean; subTitle: string; title: string; cancelLabel?: string; confirmLabel?: string; disableConfirmation?: { description: string; title: string; }; enableConfirmation?: { description: string; title: string; }; readOnly?: boolean; onToggle?: (newValue: boolean) => void; } export declare function SettingsToggleRow({ cancelLabel, checked, confirmLabel, disableConfirmation, enableConfirmation, isUpdateInProgress, onToggle, readOnly, subTitle, title, }: Readonly): import("react/jsx-runtime").JSX.Element;