import { HTMLAttributes } from 'vue';
export interface AlertProps {
class?: HTMLAttributes['class'];
size?: 'xs' | 'sm' | 'lg';
variant?: 'fill' | 'light' | 'lighter' | 'stroke';
state?: 'information' | 'success' | 'warning' | 'error' | 'feature';
dismissable?: boolean;
}
declare const _default: typeof __VLS_export;
export default _default;
declare const __VLS_export: __VLS_WithSlots void;
}, string, import('vue').PublicProps, Readonly & Readonly<{
onDismiss?: ((...args: any[]) => any) | undefined;
}>, {
size: "xs" | "sm" | "lg";
variant: "fill" | "light" | "lighter" | "stroke";
state: "information" | "success" | "warning" | "error" | "feature";
dismissable: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
default?: (props: {}) => any;
} & {
title?: (props: {}) => any;
} & {
description?: (props: {}) => any;
} & {
primary?: (props: {}) => any;
} & {
secondary?: (props: {}) => any;
}>;
type __VLS_WithSlots = T & {
new (): {
$slots: S;
};
};