import yargs from 'yargs';
export declare const command = "setdir";
export declare const describe = "set path to directory for \"build\" or \"articat\" or \"contract\"";
export declare const builder: {
    dirname: {
        string: boolean;
        type: string;
        choices: string[];
        describe: string;
    };
    dirpath: {
        string: boolean;
        type: string;
        describe: string;
    };
};
/**
 * used for setting/overriding default directories
 *
 * THIS FUNCTION SHOULD NOT BE USED UNLESS SOMEONE KNOWS EXACTLY
 * WHAT THEY ARE DOING!
 * @param args
 * args:
 * args.dirname
 * args.dirpath
 * @returns
 */
export declare const handler: (args: yargs.Arguments) => any;
/**
 * used for setting/overriding default directories
 *
 * THIS FUNCTION SHOULD NOT BE USED UNLESS SOMEONE KNOWS EXACTLY
 * WHAT THEY ARE DOING!
 * @param dirName
 * @param dirPath
 * @returns
 */
export declare function setDir(dirName: string, dirPath: string): void;
//# sourceMappingURL=setdir.d.ts.map