import React from "react"; import { ToggledStatus, ToggleSwitchProps } from "../Primitives"; export interface ToggleSwitchFieldProps extends ToggleSwitchProps { labelText: string | React.ReactNode; labelPosition?: "start" | "end"; toggledStatus?: ToggledStatus; disabled?: boolean; reversed?: boolean; inline?: boolean; fullWidth?: boolean; } /** * {@link https://cultureamp.design/components/toggle-switch-field/ Guidance} | * {@link https://cultureamp.design/storybook/?path=/docs/components-form-toggle-switch-field--default Storybook} */ export declare const ToggleSwitchField: { ({ id: propsId, labelText, labelPosition, toggledStatus, disabled, reversed, inline, fullWidth, ...restProps }: ToggleSwitchFieldProps): JSX.Element; displayName: string; };