import * as React from 'react';
export interface FieldProps {
  className?: string;
  style?: React.CSSProperties;
  showIcon?: boolean;
  state?: "default" | "active" | "error" | "filled";
  /** Text content; defaults to "Default". */
  text1?: string;
  /** Text content; defaults to "Placeholder". */
  text2?: string;
  /** Text content; defaults to "|". */
  text3?: string;
}
export declare const Field: React.FC<FieldProps>;
export default Field;
