export interface IProxyMethod {
    workerId: number;
    invocationId: number;
    methodName: string;
    methodArguments: any[];
    returnValue: any;
    error?: string;
}
export declare const DisposeMethodPayload: IProxyMethod;
export declare function deserialize(payload: Buffer): IProxyMethod;
export declare function serialize(input: IProxyMethod): Buffer;
