import { CommandModule } from 'yargs';

type FindCommandOptions = {
    cwd?: string;
    exts?: string[];
    nodemodules?: boolean;
    local?: boolean;
    config?: boolean;
};
declare const findCommands: (initPathOptions: FindCommandOptions) => Promise<CommandModule[]>;

export { findCommands };
