export interface ExportDDIDataset {
    id: string;
    name: string;
    selected: boolean;
    includeStatistics: boolean;
}
export declare class ExportDDI {
    datasets: Array<ExportDDIDataset>;
    constructor();
}
