/*! Strand UI | MIT License | dillingerstaffing.com */ import type { ComponentChildren, JSX } from "preact"; export interface AlertProps extends Omit, "status" | "title"> { /** Severity; error and warning announce assertively. */ status?: "info" | "success" | "warning" | "error"; /** Show the dismiss control. */ dismissible?: boolean; /** Called when the dismiss control is pressed. */ onDismiss?: () => void; /** Accessible name of the dismiss control. */ dismissLabel?: string; /** Heading set above the message. */ title?: ComponentChildren; /** A control set after the message, such as an undo button. */ action?: ComponentChildren; children?: ComponentChildren; } /** * Contextual feedback banner. * * @example * Saved. */ export declare const Alert: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Alert.d.ts.map