export declare class AEMContainerComponent {
    cqModel: any;
    path: string;
    pagePath: string;
    modelName: string;
    constructor();
    /**
     * Returns the aggregated path of this container path and the provided path
     *
     * @param path - the provided path to aggregate with the container path
     */
    getDataPath(path: any): any;
    /**
     * Return the page path from the data, defaulting to the provided pagePath to the container.
     */
    getPagePath(): any;
    /**
     * Returns the item data from the cqModel
     *
     * @param itemKey - the itemKey to look for in the items.
     */
    getItem(itemKey: any): any;
    /**
     * Returns the itemsOrder array from the cqModel
     */
    readonly itemsOrder: any;
}
