import type { HTMLAttributes } from 'svelte/elements';
import type { WithElementRef } from 'bits-ui';
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
    level?: 1 | 2 | 3 | 4 | 5 | 6;
};
declare const AlertTitle: import("svelte").Component<$$ComponentProps, {}, "ref">;
type AlertTitle = ReturnType<typeof AlertTitle>;
export default AlertTitle;
