export default EntryService; declare function EntryService(): void; declare class EntryService { addEntry(allParams: any): void; formData: any; createEntryRequest(): void; xhr: XMLHttpRequest | undefined; parseRequest(xml: any): { id: string | null; type: string | null; title: string | null; context_code: string | null; mediaType: string | null; entryId: string | null; userTitle: undefined; } | null; onEntryRequestLoaded(e: any): void; }