/** @typedef {typeof __propDef.props} AppBarProps */ /** @typedef {typeof __propDef.events} AppBarEvents */ /** @typedef {typeof __propDef.slots} AppBarSlots */ export default class AppBar extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, { 'navigation-icon': {}; title: {}; default: {}; 'right-content': {}; }> { } export type AppBarProps = typeof __propDef.props; export type AppBarEvents = typeof __propDef.events; export type AppBarSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { 'navigation-icon': {}; title: {}; default: {}; 'right-content': {}; }; }; export {};