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