export interface FloatingLabelProps {
  dataTestId?: string;
  children?: React.ReactNode;
  className?: string;
  dir?: string;
  editorDisabled?: boolean;
  editorId?: string;
  editorPlaceholder?: string;
  editorValid?: boolean;
  editorValue?: any;
  id?: string;
  label?: string;
  labelClassName?: string;
  optional?: boolean;
  style?: React.CSSProperties;
}
