import React, { HTMLAttributes } from "react";
import { OverrideClassName } from "@kaizen/component-base";
export type FieldMessageStatus = "default" | "success" | "error" | "caution";
export interface FieldMessageProps extends OverrideClassName> {
message?: React.ReactNode;
status?: FieldMessageStatus;
position?: "top" | "bottom";
reversed?: boolean;
/**
* **Deprecated:** Use test id compatible with your testing library (eg. `data-testid`).
* @deprecated
*/
automationId?: string;
}
/**
* @deprecated Please use the same component from `@kaizen/components`
*/
export declare const FieldMessage: {
({ message, status, position, reversed, classNameOverride, automationId, ...restProps }: FieldMessageProps): JSX.Element;
displayName: string;
};