import * as React from 'react'; export interface InputProps extends Omit, 'size'> { /** Input label */ label?: string; /** Helper text displayed below input */ helperText?: string; /** Error message - also sets error visual state */ error?: string; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Full width input */ fullWidth?: boolean; /** Prefix element (icon, text) */ prefix?: React.ReactNode; /** Suffix element (icon, button) */ suffix?: React.ReactNode; } /** * Input - Foundation form element * * Accessible by default with proper label association, error announcements, * and keyboard navigation. Supports prefix/suffix slots for icons and actions. */ export declare const Input: React.ForwardRefExoticComponent>; //# sourceMappingURL=Input.d.ts.map