import { Verbosity } from "../output/Verbosity";
export declare type Args = {
    imageInputDir: string;
    imageOutputDir: string;
    options: Options;
};
export declare type Options = {
    dryRun: boolean;
    filenameFormat: string;
    geoCode: boolean;
    locationFormat: string;
    derivedLocationFormat: string;
    minScore: number;
    replaceOnMove: boolean;
    topNLabels: number;
    verbosity: Verbosity;
};
