import React from 'react';
import { BaseInputProps } from '../BaseInput';
import { MaskType } from '../hooks/useMask';
interface InputProps extends BaseInputProps {
    [key: string]: any;
    onBlur?: (any?: any) => void;
    onFocus?: (any?: any) => void;
    onChange?: (string: any) => void;
    value?: string;
    width?: string | number;
    mask?: 'number' | 'calendar-day' | 'calendar-month' | 'calendar-year' | 'time-hour' | 'time-minute' | 'time-tod' | MaskType;
    debounce?: boolean | number;
    loading?: boolean;
    disabled?: boolean;
    formatOptions?: any;
    type?: string;
    name?: string;
    readOnly?: boolean;
    emphasis?: boolean;
}
declare const Input: React.FC<InputProps>;
export default Input;
export type { InputProps };
//# sourceMappingURL=Input.d.ts.map