import React from "react"; export type CalloutType = "Warning" | "Info" | "Notify"; export declare const Wrapper: import("styled-components").StyledComponent<"div", any, { type?: CalloutType | undefined; }, never>; declare function CalloutV2(props: { actionLabel?: string; desc: string; onClick?: React.MouseEvent; showCrossIcon?: boolean; title?: string; type: CalloutType; url?: string; }): JSX.Element | null; export default CalloutV2;