import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface AppBarRootProps extends PropsWithElement<'header'>, HTMLAttributes<'header'> { } declare const Root: import("svelte").Component; type Root = ReturnType; export default Root;