import { WNode, WNodeProps } from './types'; import { AlertVariant, AlertViewState } from './view-states'; export type AlertRenderTheme = { styles: { container: (props: { variant: AlertVariant; }) => WNodeProps; iconContainer: () => WNodeProps; icon: (props: { variant: AlertVariant; }) => WNodeProps; content: () => WNodeProps; title: () => WNodeProps; message: () => WNodeProps; }; config: (props: { variant: AlertVariant; }) => { icon: string; }; }; export declare const defaultAlertTheme: AlertRenderTheme; export declare function renderAlert(state: AlertViewState, theme?: AlertRenderTheme): WNode; //# sourceMappingURL=render-alert.d.ts.map