import type { AppConfig } from '@nuxt/schema'; import type { ButtonProps, ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/dashboard-navbar'; import type { DashboardContext } from '../utils/dashboard'; type DashboardNavbar = ComponentConfig; export interface DashboardNavbarProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; /** * The icon displayed next to the title. * @IconifyIcon */ icon?: string; title?: string; /** * Customize the toggle button to open the sidebar. * `{ color: 'neutral', variant: 'ghost' }`{lang="ts-type"} * @defaultValue true */ toggle?: boolean | Partial; /** * The side to render the toggle button on. * @defaultValue 'left' */ toggleSide?: 'left' | 'right'; class?: any; ui?: DashboardNavbar['slots']; } type DashboardNavbarSlotsProps = Omit; export interface DashboardNavbarSlots { title(props?: {}): any; leading(props: DashboardNavbarSlotsProps): any; trailing(props: DashboardNavbarSlotsProps): any; left(props: DashboardNavbarSlotsProps): any; default(props: DashboardNavbarSlotsProps): any; right(props: DashboardNavbarSlotsProps): any; toggle(props: DashboardNavbarSlotsProps): any; } declare const _default: __VLS_WithSlots & Readonly<{}>, { toggle: boolean | Partial; toggleSide: "left" | "right"; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, DashboardNavbarSlots>; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };