import React from 'react'; export interface ToggleDialogProps { title: string; label: string; initialValue: boolean; enabledText?: string; disabledText?: string; onSubmit: (value: boolean) => void; onCancel: () => void; } export declare const ToggleDialog: React.FC;