interface Params {
    projectId: string;
    token: string;
    outDir: string;
    tags?: string[];
}
export default function fetchLokalise({ projectId, token, outDir, tags, }: Params): Promise<void>;
export {};
