import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; inset?: boolean | undefined; style?: string | undefined | null; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type SubheaderProps = typeof __propDef.props; export declare type SubheaderEvents = typeof __propDef.events; export declare type SubheaderSlots = typeof __propDef.slots; export default class Subheader extends SvelteComponentTyped { } export {};