import type { Transloadit } from '../../Transloadit.ts'; import type { IOutputCtl } from '../OutputCtl.ts'; import { AuthenticatedCommand } from './BaseCommand.ts'; export interface BillsGetOptions { months: string[]; } export declare function get(output: IOutputCtl, client: Transloadit, { months }: BillsGetOptions): Promise; export declare class BillsGetCommand extends AuthenticatedCommand { static paths: string[][]; static usage: import("clipanion").Usage; months: string[]; protected run(): Promise; } //# sourceMappingURL=bills.d.ts.map