/**
 * Represents a RPC work generate response
 */
export interface IWorkGenerateResponse {
    /**
     * The work that was generated
     */
    work: Uint8Array;
}
/**
 * Parses the provided json into an abstract representation
 * @param json - The json to parse
 */
export declare function parseWorkGenerateResponse(json: any): IWorkGenerateResponse;
//# sourceMappingURL=work-generate.d.ts.map