import React from 'react'; export interface InputProps extends React.HTMLAttributes { /** * Set the before component of input */ before?: React.ReactNode; /** * Set the after component of input */ after?: React.ReactNode; /** * Option to fit input width to its parent */ block?: boolean; /** * Option to disable input */ disabled?: boolean; /** * Set the variants of input */ variant?: 'default' | 'transparent' | 'danger' | 'success' | 'warning'; /** * Set the shap of input */ shap?: 'square' | 'rounded' | 'circle'; /** * Set the size of input */ size?: 'medium' | 'small' | 'large'; /** * Set the message of input that colors is dependensies to variants */ message?: React.ReactNode; /** * Set the hint of input */ hint?: React.ReactNode; } export declare const Input: React.FC;