import React from "react"; import { Theme, ThemeFontVariant } from "../types"; export declare type CtInputProps = React.InputHTMLAttributes & { label: string; error?: string; invalid?: boolean; theme?: Theme; fontVariant?: ThemeFontVariant; }; declare function CtInput({ label, error, theme, fontVariant, invalid, ...rest }: CtInputProps): JSX.Element; declare namespace CtInput { var defaultProps: { theme: undefined; error: undefined; invalid: boolean; fontVariant: ThemeFontVariant; }; } export default CtInput;