import { Placement } from './placement'; import { CategoryExternalId } from './categoryExternalId'; export declare class Category { name: string; externalId: string; isCurrentlyActive: boolean; publishAt: string; externalIds: CategoryExternalId[]; urlName: string; placement?: Placement; type: string; id: string; }