type SEONBackendServiceProps = {
    endpoint: string | null;
    headers?: object;
    method?: string;
    body?: object | string | Blob | ArrayBuffer | ArrayBufferView | URLSearchParams | FormData | ReadableStream<Uint8Array> | null | undefined | any;
    excludeJWT?: boolean;
    isFullUrl?: boolean;
    binaryBody?: boolean;
    jwt?: string;
    ignoreUnauthorized?: boolean;
};
export declare const SEONBackendService: ({ endpoint, headers, method, body, excludeJWT, isFullUrl, binaryBody, jwt, ignoreUnauthorized }: SEONBackendServiceProps) => Promise<any>;
export {};
