import { DashboardExport } from "@gooddata/typings";
import { XhrModule } from "../xhr";
import { IExportResponse } from "../interfaces";
import { IPollingOptions } from "../util";
export declare class DashboardModule {
    private xhr;
    constructor(xhr: XhrModule);
    exportToPdf(projectId: string, dashboardUri: string, filters?: DashboardExport.FilterContextItem[], pollingOptions?: IPollingOptions): Promise<IExportResponse>;
    private pollPdfFile;
    private getDashboardExportPayload;
}
