import * as React from 'react'; export declare type Props = { /** The `name` is also used for id and htmlFor */ name: string; /** Label */ label?: string; /** [imask doc](https://imask.js.org/) */ mask?: string | Array; /** Right dock */ rightDock?: string | React.ReactNode; /** class */ className?: string; /** label style */ labelStyle?: React.CSSProperties; /** handle method of clsadasdsad */ onClick?: React.FormEventHandler; }; /** Input component with mask and floating label */ declare const Input: React.FC; export { Input };