import { ComponentProps } from 'react';
export interface InputTextOptions {
    icon?: JSX.Element;
    iconPlacement?: 'left' | 'right';
    isClearable?: boolean;
    size?: Size;
    transparent?: boolean;
    variant?: Variant;
}
export type InputTextProps = InputTextOptions & Omit<ComponentProps<'input'>, 'size'>;
export type Size = 'lg' | 'md' | 'sm';
export type Variant = 'danger' | 'success' | 'warning';
