import IInput from './input';
import IGroup from './group';
import IPassword from './password';
import INumber from './number';
type RefInput = typeof IInput;
export interface InputComponent extends RefInput {
    displayName: string;
    Group: typeof IGroup & {
        displayName: string;
    };
    Password: typeof IPassword & {
        displayName: string;
    };
    Number: typeof INumber & {
        displayName: string;
    };
}
declare const InputComp: InputComponent;
export default InputComp;
