import { CardContract, DashboardConfig, SerializedDashboardContract, DashboardContract } from '@tensei/common'; export declare class Dashboard implements DashboardContract { config: DashboardConfig; constructor(name: string, slug?: string); cards(cards: CardContract[]): this; group(group: string): this; serialize(): SerializedDashboardContract; hideFromNavigation(): this; } export declare const dashboard: (name: string, slug?: string | undefined) => Dashboard;