import { Compiler } from "../Compiler";
/**
 * Provides the functionality to compile localization-sets.
 */
export declare class LocalizationSetCompiler extends Compiler<{
    [locale: string]: {
        [category: string]: {
            [key: string]: string;
        };
    };
}> {
    /**
     * Initializes a new instance of the `LocalizationSetCompiler` class.
     *
     * @param item
     * The item to compile.
     */
    constructor(item: {
        [locale: string]: {
            [category: string]: {
                [key: string]: string;
            };
        };
    });
    /**
     * @inheritdoc
     */
    protected Compile(): Promise<void>;
}
