import { type EventEmitter } from "../../stencil-public-runtime"; export type CalloutVariant = "info" | "tip" | "success" | "warning" | "error" | "announcement"; /** * An inline callout / alert for conveying status or contextual information. * White background with a hairline border tinted by the variant color. * * Use the `actions` slot to add `scout-button` elements. */ export declare class ScoutCallout { el: HTMLElement; /** Visual intent of the callout. */ variant: CalloutVariant; /** Short, bold heading line. */ heading?: string; /** Show a dismiss (×) button in the top-right corner. */ dismissible: boolean; /** Fired when the dismiss button is clicked. */ scoutDismiss: EventEmitter; private hasActions; componentDidLoad(): void; private syncActionsSlot; render(): any; }