import { type PropType, type StyleValue } from 'vue'; export interface NavbarProps { rootStyle?: StyleValue; rootClass?: string; title?: string; flow?: boolean; } export declare const navbarProps: { rootStyle: PropType; rootClass: StringConstructor; title: StringConstructor; flow: BooleanConstructor; }; export interface NavbarSlots { default(props: Record): any; title(props: Record): any; left(props: Record): any; right(props: Record): any; } export interface NavbarItemProps { rootStyle?: StyleValue; rootClass?: string; } export declare const navbarItemProps: { rootStyle: PropType; rootClass: StringConstructor; }; export interface NavbarItemSlots { default(props: Record): any; } export interface NavbarItemEmits { (e: 'click', event: any): void; }