import type { InputHTMLAttributes } from "react";
import type { InputGroupProps } from "../input-group";
/**
 * Omitting:
 * - `size` from InputHTMLAttributes
 * - `children` from InputGroupProps
 * The original `size` prop that input elements have is not in use in HDS.
 * It is overridden by styling.
 */
export type InputProps = Omit<InputGroupProps & Omit<InputHTMLAttributes<HTMLInputElement>, "size">, "children">;
export declare const Input: import("react").ForwardRefExoticComponent<InputProps & import("react").RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=input.d.ts.map