export declare const ExportCompressionOption: {
    readonly Gzip: "GZIP";
    readonly Parquet: "PARQUET";
};
export type ExportCompressionOption = (typeof ExportCompressionOption)[keyof typeof ExportCompressionOption];
export declare const ExportFormatOption: {
    readonly TextOrCsv: "TEXT_OR_CSV";
    readonly Parquet: "PARQUET";
};
export type ExportFormatOption = (typeof ExportFormatOption)[keyof typeof ExportFormatOption];
export declare const ExportFrequencyOption: {
    readonly Synchronous: "SYNCHRONOUS";
};
export type ExportFrequencyOption = (typeof ExportFrequencyOption)[keyof typeof ExportFrequencyOption];
export declare const ExportOverwriteOption: {
    readonly CreateNewReport: "CREATE_NEW_REPORT";
    readonly OverwriteReport: "OVERWRITE_REPORT";
};
export type ExportOverwriteOption = (typeof ExportOverwriteOption)[keyof typeof ExportOverwriteOption];
export declare const ExportS3OutputType: {
    readonly Custom: "CUSTOM";
    readonly Athena: "ATHENA";
    readonly Redshift: "REDSHIFT";
};
export type ExportS3OutputType = (typeof ExportS3OutputType)[keyof typeof ExportS3OutputType];
