import { CommandModule, Arguments, Options } from 'yargs'; import { Global } from '@nativecode/media-cli'; export interface ListOptions extends Global { ids?: string[]; year?: number; } export declare class ListCommand implements CommandModule<{}, ListOptions> { aliases: string[]; builder: { [key: string]: Options; }; command: string; handler: (args: Arguments) => Promise; } declare const _default: ListCommand; export default _default; //# sourceMappingURL=list.d.ts.map