import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface TreeViewLabelProps extends PropsWithElement<'h3'>, HTMLAttributes<'h3'> { /** * The level of the heading. * * @defaultValue 3 */ level?: 1 | 2 | 3 | 4 | 5 | 6; } declare const Label: import("svelte").Component; type Label = ReturnType; export default Label;