import { FieldProps } from "@fluentui/react-components";
interface iProps<ValueType> extends FieldProps {
    /** return non empty string if value is not valid */
    validation?: () => string;
    formKey?: string;
    required?: boolean;
    /** sendIn */
    value?: ValueType;
}
export declare function FormFieldEX<ValueType>(props: iProps<ValueType>): import("react/jsx-runtime").JSX.Element;
export {};
