/** * Recipe configuration for the Toast component. * Defines the styling variants and base styles using Chakra UI's recipe system. * * Registered under the "toast" key to override Chakra's default toast recipe, * allowing Chakra's built-in Toast components to use Nimbus styles directly. * * Color palette mappings: * - info → info (blue) * - success → positive (green) * - warning → warning (amber) * - error → critical (red) * * Variants: * - solid: Bold colored background with contrast text (default) * - subtle: Subtle background with border * - accent-start: Subtle background with a colored accent line on the inline-start edge (via inset box-shadow) */ export declare const toastRecipe: import('@chakra-ui/react').SlotRecipeDefinition<"root" | "title" | "description" | "indicator" | "closeTrigger" | "actionTrigger", { variant: { solid: { root: { backgroundColor: "colorPalette.9"; }; indicator: { "& svg": { color: "colorPalette.contrast"; }; }; title: { color: "colorPalette.contrast"; }; description: { color: "colorPalette.contrast"; }; actionTrigger: { borderColor: "colorPalette.contrast"; }; }; subtle: { root: { backgroundColor: "colorPalette.2"; boxShadow: "inset 0 0 0 1px {colors.colorPalette.5}, {shadows.1}"; }; indicator: { "& svg": { color: "colorPalette.11"; }; }; title: { color: "colorPalette.11"; }; description: { color: "colorPalette.12"; }; }; "accent-start": { root: { backgroundColor: "neutral.2"; boxShadow: "inset 3px 0 0 0 {colors.colorPalette.9}, inset 0 0 0 1px {colors.neutral.5}, {shadows.1}"; }; indicator: { "& svg": { color: "colorPalette.11"; }; }; title: { color: "neutral.12"; }; description: { color: "neutral.11"; }; actionTrigger: { colorPalette: "neutral"; }; closeTrigger: { colorPalette: "neutral"; }; }; }; }>;