type Intent = "primary" | "danger" | "success" | "warning" | "lightSuccess"; export type MessageAction = { linkElement?: any; onClick?: () => void; text: string; intent: Intent; }; export declare const ActionsContainer: import("styled-components").StyledComponent<"div", any, {}, never>; export declare function ActionButton(props: MessageAction): JSX.Element | null; export type FormMessageProps = { intent: Intent; message: string; actions?: MessageAction[]; linkAs?: any; }; export declare function FormMessage(props: FormMessageProps): JSX.Element; export default FormMessage;