interface Props { variant?: 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'accent' | 'note'; /** * Setting a title and description will use slightly different styling other * than slots. */ title?: string; /** * Use strong color */ filled?: boolean; /** * Fill with a strong saturated color */ filledStrong?: boolean; /** * Additional text rendered under the title */ description?: string; /** * Vertical alignment of the icon */ iconAlign?: 'start' | 'center' | 'end'; /** * Hides the icon completely. If you hide the icon, make sure you're using * `filled` variant, otherwise the alert will be missing the relevant * color-coding. */ hideIcon?: boolean; } declare var __VLS_1: {}, __VLS_38: {}, __VLS_40: {}, __VLS_42: {}; type __VLS_Slots = {} & { icon?: (props: typeof __VLS_1) => any; } & { default?: (props: typeof __VLS_38) => any; } & { default?: (props: typeof __VLS_40) => any; } & { end?: (props: typeof __VLS_42) => any; }; declare const __VLS_base: import('vue').DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };