import { SvelteComponent } from "svelte"; declare const __propDef: { props: { title: string; subtitle: string; icon: string; iconSize: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type DrawerHeaderProps = typeof __propDef.props; export type DrawerHeaderEvents = typeof __propDef.events; export type DrawerHeaderSlots = typeof __propDef.slots; export default class DrawerHeader extends SvelteComponent { } export {};