import type { CommandArgs } from '../wrapper';
import type { VerifyConfigOptions } from '../types';
export type TranslationsOptions = {
    locale: string;
    'project-dir'?: string;
} & VerifyConfigOptions;
export declare const handleTranslations: ({ argv }: CommandArgs<TranslationsOptions>) => Promise<void>;
