export declare const exampleCustomerGroups: { id: string; name: string; }[]; export declare const exampleCategoryTree: { id: string; name: string; slug: string; children: any[]; products: any[]; showInMenu: boolean; }[]; export declare const exampleProduct: (id: string) => { id: string; shortDescription: string; longDescription: string; slug: string; name: string; categories: any[]; variants: { id: string; sku: string; listPrice: string; salePrice: string; attributes: {}; images: { url: string; }[]; }[]; };