import { ElementCompact } from 'xml-js'; import { DAVDepth, DAVResponse } from './types/DAVTypes'; import { DAVAccount, DAVAddressBook, DAVVCard } from './types/models'; export declare const addressBookQuery: (params: { url: string; props: ElementCompact; filters?: ElementCompact; depth?: DAVDepth; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const addressBookMultiGet: (params: { url: string; props: ElementCompact; objectUrls: string[]; depth: DAVDepth; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const fetchAddressBooks: (params?: { account?: DAVAccount; props?: ElementCompact; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const fetchVCards: (params: { addressBook: DAVAddressBook; headers?: Record; objectUrls?: string[]; urlFilter?: (url: string) => boolean; useMultiGet?: boolean; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const createVCard: (params: { addressBook: DAVAddressBook; vCardString: string; filename: string; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const updateVCard: (params: { vCard: DAVVCard; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise; export declare const deleteVCard: (params: { vCard: DAVVCard; headers?: Record; headersToExclude?: string[]; fetchOptions?: RequestInit; fetch?: typeof fetch; }) => Promise;