import CommandBase from './commandBase';
export default class PostRequest extends CommandBase {
    commandName: string;
    method(url: string, payload: any): void;
}
