export declare const PUT_METHOD = "PUT";
export declare class CRUDMethods {
    private endpoint;
    private serverUrl;
    constructor(endpoint: string);
    create(accessToken: string, khID?: string | null, body?: any | null): Promise<any>;
    get(accessToken: string, khID?: string | null, body?: any | null, options?: any | null, pageParam?: number): Promise<any>;
    getAll(accessToken: string, khID?: string | null, body?: any | null, options?: any | null): Promise<any>;
    getOne(accessToken: string, khID: string | null | undefined, id: string): Promise<any>;
    put(accessToken: string, khID: string | null | undefined, body: any, id: string): Promise<any>;
    patch(accessToken: string, khID: string | null | undefined, body: any, id: string, options?: any | null): Promise<any>;
    delete(accessToken: string, khID: string | null | undefined, id: string, options?: any | null): Promise<any>;
}
