import { Context } from "../imports/Context"; import { Function } from "../imports/Function"; import { GlideRecord } from "../types/GlideRecord"; export declare class Catalog { canView(mobile?: boolean, userId?: string): boolean; constructor( cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean ); static getAvailableCatalog(): Catalog; getBackgroundColor(): string; static getCatalogCount(): number; getCatalogItemIds(): Array; getCategories(): Array; getCategoryIds(): Array; static getDefaultCatalog(): Catalog; getDefaultView(): string; getDescription(): string; getDesktopImageSRC(): string; getEditLink(): string; getGr(): GlideRecord; getHeaderIconSRC(): string; getHomepageCategories(): Array; getID(): string; getMobilePicture(): string; getTitle(): string; hasCategories(): boolean; hasItems(): boolean; isWishlistEnabled(): boolean; }