import { IconType } from '..';
type AlertType = 'info' | 'success' | 'warning' | 'error';
interface Props {
message?: string;
/** Bold heading above the message / default slot. */
title?: string;
thin?: boolean;
/** Border + transparent background (drops the tinted fill). */
outline?: boolean;
/** Neutral surface card: standard box background + a subtle neutral
(non-accent) border. Only the icon/title keep the accent color — use
when a full tinted fill reads as too loud. */
frame?: boolean;
dismissable?: boolean;
type?: AlertType;
/** Boolean shorthands: ... */
info?: boolean;
success?: boolean;
warning?: boolean;
error?: boolean;
icon?: IconType | 'none';
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
actions?(_: {}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType;
declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots;
export default _default;
type __VLS_WithTemplateSlots = T & {
new (): {
$slots: S;
};
};
//# sourceMappingURL=Alert.vue.d.ts.map