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