export declare enum FileFormatToken {
    CombinedLabels = "combinedLabels",
    Filename = "filename",
    FileSizeMb = "fileSizeMb",
    Height = "height",
    Location = "location",
    TopLabel = "topLabel",
    Width = "width",
    Year = "year"
}
export declare type FileNameTokens = Map<FileFormatToken, string>;
export declare namespace FilenameGenerator {
    function generateFilename(tokens: FileNameTokens, format: string): string;
    function doesFormatIncludeLocation(format: string): boolean;
}
