import type { ComponentSize } from '../../../types'; export type { InputProps } from './props'; export type InputType = 'text' | 'hidden' | 'password' | 'number'; export type InputSize = ComponentSize;