import type { CommandModule } from 'yargs';
interface ListCommandArgs {
    files: boolean;
    json: boolean;
    list: boolean;
    all?: boolean;
}
export declare const listCommand: CommandModule<{}, ListCommandArgs>;
export {};
