import { FC, InputHTMLAttributes } from 'react';
export interface IInput extends InputHTMLAttributes<HTMLInputElement> {
    /**
     * Current theme
     */
    isDarkTheme: boolean;
}
declare const Input: FC<IInput>;
export default Input;
