import type { ReactElement } from "react"; import React from "react"; import type { IconName } from "../Icon/Icon"; import type { CalloutVariations } from "../../types"; export type CalloutProps = { type?: CalloutVariations; icon?: IconName; "data-e2e-test-id"?: string; text: string | ReactElement; description?: string | ReactElement; }; export declare function Callout({ text, description, type, icon, "data-e2e-test-id": dataE2eTestId, ...ariaAttributes }: CalloutProps): React.ReactElement;