import { ComponentProps } from 'react'; export type InputProps = ComponentProps<'input'>; export interface TextInputProps extends InputProps { icon?: React.ReactNode; } export declare function TextInput({ icon, ...props }: TextInputProps): import("react/jsx-runtime").JSX.Element;