import { ApiHelpers } from "../ApiHelpers"; export declare class ContentDeliveryApiHelper { api: ApiHelpers; constructor(api: ApiHelpers); getAllContentItems(): Promise; getContentItemWithId(id: string, extraHeaders?: { [key: string]: string; }, expand?: string, fields?: string): Promise; getContentItemWithRoute(route: string, extraHeaders?: { [key: string]: string; }): Promise; getContentItemsWithIds(ids: string[], extraHeaders?: { [key: string]: string; }): Promise; getContentItemsFromAQuery(extraHeaders?: { [key: string]: string; }, fetch?: string, filter?: string, sort?: string, skip?: number, take?: number): Promise; verifyBasicPropertiesForContentItem(contentName: string, contentItemJson: any): Promise; verifyRoutePropertyForContentItem(contentName: string, contentItemJson: any, expectedRoutePath?: string): Promise; verifyEditorialPropertiesForInvariantContentItem(contentName: string, contentItemJson: any): Promise; verifyCulturePropertyForContentItem(contentName: string, contentItemJson: any, isVariesByCulture?: boolean): Promise; verifyEditorialPropertiesForContentItemWithMultiURLPicker(contentName: string, contentItemJson: any, pickerType: string): Promise; verifyPropertiesForMediaItem(mediaName: string, mediaItemJson: any): Promise; }