import type { CaseOptions } from './types'; declare class CaseAPIs { /** * Create the work object associated with the given caseTypeID * @param caseTypeID The work object to be created
* Example: "OPB1HW-SpaceTra-Work-RequestApproval"

* @param options - Optional, object containing extra infomation like startingFields and pageName * @returns response as promise */ static createCase(caseTypeID: string, options: CaseOptions): Promise<{ response: any; requestPayload: { caseTypeID: string; content: any; processID: string | undefined; }; headers: { [key: string]: any; RemoteSystemID?: string; RemoteClassGroup?: any; etag?: any; }; }>; } export default CaseAPIs;