import { StyleFunctionProps } from '@chakra-ui/react'; export declare const Toast: { baseStyle?: (({ theme }: StyleFunctionProps) => { title: any; description: { textStyle: string; }; icon: { position: string; }; wrapper: { borderRadius: string; boxSizing: string; }; container: { borderRadius: string; background: string; }; close: { position: string; }; }) | undefined; sizes?: { md: { icon: { left: string; top: string; boxSize: string; }; content: { ml: string; }; wrapper: { width: { base: "auto"; lg: "42.5rem"; }; maxW: string; }; container: { padding: string; pr: string; }; close: { w: string; h: string; insetEnd: string; top: string; fontSize: string; }; }; } | undefined; variants?: { subtle: (props: StyleFunctionProps) => { wrapper: { color: string; bg: string; border: string; }; icon: { fill: string; }; }; } | undefined; defaultProps?: { size?: "md" | undefined; variant?: "subtle" | undefined; colorScheme?: string | undefined; } | undefined; parts: ("content" | "container" | "title" | "icon" | "spinner" | "close" | "description" | "wrapper")[]; };