import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { card?: boolean; rounded?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { title: {}; actions: {}; }; }; export declare type NavbarToolbarProps = typeof __propDef.props; export declare type NavbarToolbarEvents = typeof __propDef.events; export declare type NavbarToolbarSlots = typeof __propDef.slots; export default class NavbarToolbar extends SvelteComponentTyped { } export {};