import { InputProps } from '../Input/Input'; import { FormFieldBaseProps } from './utils/formFieldBase'; interface FormInputOwnProps extends InputProps { } declare type SelectedFormFieldCustomProps = Omit; export interface FormInputProps extends SelectedFormFieldCustomProps, FormInputOwnProps { } export declare type FormInputStylesProps = never; export declare const formInputClassName = "ui-form__input"; /** * An FormInput renders a Input wrapped by FormField. */ export declare const FormInput: import("@fluentui/react-bindings").ComponentWithAs<"input", FormInputProps & Pick>; export {};