declare type EisdConfig = {
    commandToExecute: string;
    directoriesToUse: string[];
    allowErrors?: boolean;
    aSynchronous?: boolean;
    envVariable?: string;
    yarnWorkspaces?: boolean;
    verbose?: boolean;
};
/**
 * This is a CLI tool helps you do execute cmds per given folder. If you try to do the same
 * with a normal cd command, it will do it in the wrong folder. So this tool simply
 * navigates to the proper folders and does `your command`. That's it. #ez #boring
 */
export declare function eisd(config: EisdConfig): Promise<void>;
export {};
