import React from 'react'; import './style.scss'; export interface ToggleSettingProps { /** Label for the toggle */ label: string; /** Current value */ value: boolean; /** Change handler */ onChange: (value: boolean) => void; /** Whether the toggle is disabled */ disabled?: boolean; /** Help text shown below the toggle */ helpText?: string; /** Show toggle on the left side */ togglePosition?: 'left' | 'right'; /** Custom className */ className?: string; } export declare const ToggleSetting: React.FC; //# sourceMappingURL=ToggleSetting.d.ts.map