import { ComponentProps, PropsWithChildren, default as React } from 'react'; import { ToggleInput } from '../Toggle'; type SettingsToggleProps = { /** * The CSS class name for the containing field. */ className?: string; /** * The field name. */ name: string; label: string; /** * Optional help text to display below the setting. */ helpMessage?: string; /** * Optional help text to display below the setting. */ disabledMessage?: string; } & Omit, "type">; /** * A toggle component. */ export declare const SettingsToggleInput: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * A styled checkbox input wrapped in a `Control` component, for use in Radix forms. */ export declare const SettingsToggleControl: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes, "ref"> & React.RefAttributes>; export {}; //# sourceMappingURL=SettingsToggle.d.ts.map