import { IconType } from './Icon/types'; export type ComponentInfoState = { isSuccess?: boolean; isInvalid?: boolean; isDisabled?: boolean; isReadOnly?: boolean; isRequired?: boolean; }; export type ComponentSize = { size?: 's' | 'm' | 'l'; }; export type BaseInputProps = ComponentInfoState & ComponentSize & { label?: string; helpText?: string; LeftIcon?: IconType; RightIcon?: IconType; isLabelFixed?: boolean; placeholder?: string; }; //# sourceMappingURL=types.d.ts.map