import * as React from "react"; interface InputTextBaseProps { children: (props: { descriptionId?: string; inputId: string; }) => React.ReactNode; description?: string; hideLabel?: boolean; id?: string; invalid?: boolean; label?: React.ReactNode; size?: "md" | "lg"; } export type InputTextBaseElementProps = Omit, keyof InputTextBaseProps> & InputTextBaseProps; export declare function InputTextBase({ children, className, description, hideLabel, id, label, invalid, size, }: InputTextBaseElementProps): React.JSX.Element; export {}; //# sourceMappingURL=InputTextBase.d.ts.map