export declare const getWcpProjectLicenseCacheKey: () => string; export interface WcpFetchParams { url: string; authorization: string; body: Record; meta: Record; } export declare const wcpFetch: ({ url, authorization, body }: WcpFetchParams) => Promise<{ error: boolean; status: number; statusText: string; message: any; }>;