import { HttpMethod } from '@coolio/http'; export declare const DefaultHeadersMock: { Accept: string; 'Content-Type': string; }; export declare const GetMock: { uri: string; raw: { data: { id: string; type: string; attributes: { testField1: string; testField2: number; }; relationships: {}; links: { self: string; }; }; }; parsed: { id: string; type: string; testField1: string; testField2: number; self: string; }; }; export declare const GetListMock: { uri: string; raw: { data: { id: string; type: string; attributes: { testField1: string; testField2: number; }; relationships: {}; links: { self: string; }; }[]; links: { self: string; first: string; last: string; }; meta: { totalResourceCount: number; }; }; parsed: { id: string; type: string; testField1: string; testField2: number; self: string; }[]; }; export declare const CreationalMock: { attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; }; export declare const PostMock: { attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; uri: string; id: string; type: string; }; export declare const PostEmptyMock: { uri: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; id: string; type: string; }; export declare const PutMock: { attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; uri: string; id: string; type: string; }; export declare const PatchMock: { attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; uri: string; id: string; type: string; }; export declare const DeleteMock: { uri: string; }; export declare const CreationalMocksMap: { POST: { attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; uri: string; id: string; type: string; }; PATCH: { attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; uri: string; id: string; type: string; }; PUT: { attributes: { attributeOne: string; attributeTwo: string; }; relationships: { name: string; uuid: string; type: string; }[]; body: { data: { id: string; type: string; attributes: { attributeOne: string; attributeTwo: string; }; relationships: { relName: { data: { id: string; type: string; }; }; relName2: { data: { id: string; type: string; }; }; }; }; }; uri: string; id: string; type: string; }; }; //# sourceMappingURL=jsonApi.mocks.d.ts.map