///
import type { InputProps } from '../Input/Input';
import type { InputFieldProps } from '../Input/InputField';
export type InputPasswordProps = InputProps & InputFieldProps;
export declare const InputPassword: import("react").ForwardRefExoticComponent<{
[index: `data-${string}`]: unknown;
as?: any;
css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined;
className?: string | undefined;
children?: import("react").ReactNode;
} & InputProps & Omit, "size"> & {
htmlSize?: number | undefined;
} & import("react").RefAttributes>;