import type { InputHTMLAttributes, ReactNode } from 'react';
/**
* Render a text input with an optional leading icon.
* @param props.icon - optional 16px leading icon node.
* @returns wrapper span containing the native input; input attributes pass through.
*/
export declare function Input({ icon, className, ...rest }: {
icon?: ReactNode;
className?: string;
} & InputHTMLAttributes): import("react").JSX.Element;
//# sourceMappingURL=Input.d.ts.map