import { ElementCompact } from 'xml-js'; import { DAVDepth, DAVRequest, DAVResponse } from './types/DAVTypes'; import { fetch } from './util/fetch'; export declare const davRequest: (params: { url: string; init: DAVRequest; convertIncoming?: boolean; parseOutgoing?: boolean; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const propfind: (params: { url: string; props: ElementCompact; depth?: DAVDepth; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const createObject: (params: { url: string; data: BodyInit; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const updateObject: (params: { url: string; data: BodyInit; etag?: string; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const deleteObject: (params: { url: string; etag?: string; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise;