import { Command } from 'clipanion';
export default class SdkCommand extends Command {
    static paths: string[][];
    args: string[];
    execute(): Promise<void>;
}
