export declare const alertTheme: { baseStyle?: ((props: import('@chakra-ui/styled-system').StyleFunctionProps) => { container: { display: string; alignItems: string; }; icon: { rounded: string; bg: string; color: string; fontSize: string; w: number; h: number; alignItems: string; justifyContent: string; }; title: { letterSpacing: string; fontSize: string; fontWeight: string; lineHeight: string; }; description: { fontSize: string; fontWeight: string; lineHeight: string; display: string; }; }) | undefined; sizes?: { base: { container: { px: number; py: number; rounded: string; }; }; sm: { container: { p: number; rounded: string; }; title: { fontSize: string; fontWeight: number; lineHeight: number; }; }; md: { container: { py: string; px: number; rounded: string; }; title: { fontSize: string; fontWeight: string; lineHeight: number; }; description: { fontSize: string; fontWeight: string; lineHeight: string; }; }; lg: { container: { p: number; rounded: string; }; title: { fontSize: string; fontWeight: string; lineHeight: string; }; description: { color: string; fontSize: string; fontWeight: string; lineHeight: string; }; }; } | undefined; variants?: { subtle: (props: import('@chakra-ui/styled-system').StyleFunctionProps) => { container: { bg: string; }; description: { color: string; }; }; info: () => { container: { border: string; borderColor: string; }; title: { color: string; margin: number; }; }; solid: (props: import('@chakra-ui/styled-system').StyleFunctionProps) => { container: { bg: string; }; description: { color: string; }; }; } | undefined; defaultProps?: { size?: "base" | "sm" | "md" | "lg" | undefined; variant?: "solid" | "info" | "subtle" | undefined; colorScheme?: string | undefined; } | undefined; parts: ("title" | "container" | "icon" | "spinner" | "description")[]; };