import React from "react";
import { DateInput } from "./FormDateInput";
import { FormInputProps } from "../input.type";
export declare function FormInput(props: FormInputProps): React.JSX.Element;
export declare namespace FormInput {
    var Password: ({ minLength, hideRequirements, hideRevealer, onChange, type, ...props }: PasswordProps) => React.JSX.Element;
    var Search: ({ placeholder, ...props }: FormInputProps) => React.JSX.Element;
    var Date: typeof DateInput;
}
type PasswordProps = FormInputProps & {
    minLength?: number;
    hideRequirements?: boolean;
    hideRevealer?: boolean;
};
export {};
