import type { ComponentColor, ComponentSize, IComponentBaseProps } from '../../types';
import type { HTMLInputAttributes } from 'svelte/elements';
export type TInputProps = Omit<HTMLInputAttributes, 'size'> & IComponentBaseProps & {
    size?: ComponentSize;
    color?: ComponentColor;
};
