/** * Mock data for development and testing. * * Provides realistic mock entities (organizations, workspaces, projects, products, languages) * that can be used in dev harnesses and storybook. * * @module @burdenoff/fe-libs/shared/utils/mockData */ export declare const mockProducts: { id: string; name: string; icon: string; color: string; url: string; }[]; export declare const mockLanguages: { code: string; name: string; nativeName: string; flag: string; }[]; export declare const mockOrganizations: { id: string; name: string; slug: string; tenantId: string; }[]; export declare const mockWorkspaces: { id: string; name: string; organizationId: string; slug: string; }[]; export declare const mockProjects: { id: string; name: string; workspaceId: string; slug: string; }[]; //# sourceMappingURL=mockData.d.ts.map