import { ReactNode } from 'react'; export declare type CustomInputType = 'number' | 'price' | 'idcard'; export interface BaseCustomInputProps { type?: CustomInputType; label?: ReactNode; clearable?: boolean; onChange?: (value: string) => void; onFocus?: (value: string) => void; onBlur?: (value: string) => void; }