import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { showButton?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { brand: { class: string; }; left: {}; right: {}; }; }; export declare type DashboardNavbarProps = typeof __propDef.props; export declare type DashboardNavbarEvents = typeof __propDef.events; export declare type DashboardNavbarSlots = typeof __propDef.slots; export default class DashboardNavbar extends SvelteComponentTyped { } export {};