import * as React from 'react';
export interface InputProps {
  className?: string;
  style?: React.CSSProperties;
  state?: "default" | "focus" | "error" | "disabled";
  size?: "md" | "lg";
  /** Text content; defaults to "Label". */
  text1?: string;
  /** Text content; defaults to "Placeholder". */
  text2?: string;
  /** Text content; defaults to "Texte d'aide". */
  text3?: string;
}
export declare const Input: React.FC<InputProps>;
export default Input;
