import { AriaAttributes, ReactNode } from 'react'; import { AvatarViewProps } from '../../avatarView'; import { ButtonProps } from '../../button/Button.types'; import { PrimitivePromptProps } from '../PrimitivePrompt'; import { BadgeAssetsProps } from '../../badge'; export type ActionPromptProps = { title: ReactNode; description?: ReactNode; /** @default {} */ media?: { imgSrc?: string; avatar?: Pick & { asset?: AvatarViewProps['children']; badge?: Pick; }; 'aria-label'?: string; 'aria-hidden'?: boolean; }; action: Pick & { label: ButtonProps['children']; }; actionSecondary?: Pick & { label: ButtonProps['children']; }; 'aria-label'?: AriaAttributes['aria-label']; } & Pick & { /** * The sentiment determines the colour scheme * @default 'neutral' */ sentiment?: PrimitivePromptProps['sentiment']; }; /** * Use an action prompt for optional feedback that doesn't require immediate action, such as feature upsells, warnings, or suggestions. These prompts are typically used outside of core product flows (e.g., Launchpad, Recipient, or Transaction screens) and can be addressed at the user's convenience. * * If your message is about immediate user feedback (e.g., form submission errors, download failures, missing data warnings), use an [info prompt](https://storybook.wise.design/?path=/docs/prompts-infoprompt--docs) instead. * * Guidance can be found in the [design system](https://wise.design/components/action-prompt). */ export declare const ActionPrompt: ({ sentiment, title, description, onDismiss, media, action, actionSecondary, id, className, "data-testid": testId, "aria-label": ariaLabel, }: ActionPromptProps) => import("react").JSX.Element; export default ActionPrompt; //# sourceMappingURL=ActionPrompt.d.ts.map