import { FunctionComponent, SVGProps, ComponentPropsWithRef } from 'react'; import { LabelContainerProps } from '../label-container'; type Props = Omit, 'id' | 'size'> & LabelContainerProps & { icon?: FunctionComponent & { title?: string | undefined; }>; }; declare const Input: ({ icon: Icon, className, label, error, type, size, block, ...attrs }: Props) => import("react/jsx-runtime").JSX.Element; export { Input }; export type { Props as InputProps };