interface GeneratePathData {
    baseDir: string;
    kbotDir: string;
    fontsDir: string;
    renderFontsDir: string;
    statusFontsDir: string;
    imagesDir: string;
    statusImagesDir: string;
    tarotImagesDir: string;
    bilibiliDir: string;
    bilibiliCookiePath: string;
    bilibiliVupPath: string;
    twitterDir: string;
    twitterCookiePath: string;
}
declare class GeneratePath {
    private static instance;
    private generatePathData;
    private constructor();
    static getInstance(path: string): GeneratePath;
    setFontsDir(fontsDir: string): void;
    setImagesDir(imagesDir: string): void;
    getGeneratePathData(): GeneratePathData;
}
export default GeneratePath;
