export default function MultInput({ name, required, title, customPlaceholder, defaultValue, xs, sm, watchValue, inputMinLength, inputMaxLength, md, ...props }: {
    name: string;
    title?: string;
    watchValue?: string;
    customPlaceholder?: string;
    required?: boolean;
    defaultValue?: string;
    inputMinLength?: number;
    inputMaxLength?: number;
    xs?: number;
    sm?: number;
    md?: number;
}): JSX.Element;
