import { Input as InputComponent } from './input';
import { Password } from './password';
import { Phone } from './phone';
import './style.less';
export type { BaseInputProps, InputProps } from './input';
export type { PasswordInputProps } from './password';
export type { PhoneInputProps } from './phone';
export type InputType = typeof InputComponent & {
    Password: typeof Password;
    Phone: typeof Phone;
};
declare const Input: InputType;
export { Input, };
//# sourceMappingURL=index.d.ts.map