import { CheckboxProps } from '../Checkbox/Checkbox'; import { FormFieldBaseProps } from './utils/formFieldBase'; interface FormCheckboxOwnProps extends CheckboxProps { } declare type SelectedFormFieldCustomProps = Omit; export interface FormCheckboxProps extends SelectedFormFieldCustomProps, FormCheckboxOwnProps { } export declare type FormCheckboxStylesProps = never; export declare const formCheckboxClassName = "ui-form__checkbox"; /** * An FormCheckbox renders a Checkbox wrapped by FormField. */ export declare const FormCheckbox: import("@fluentui/react-bindings").ComponentWithAs<"div", FormCheckboxProps & Pick>; export {};