declare global { interface Window { Accordion: (elem: HTMLElement, options?: any) => any; } } export declare class LodProcessingRegister { /** * Items that should be shown per page */ itemsPerPage: number; /** * Custom sparqlEndpoint */ sparqlEndpoint?: string; /** * Custom open data soft endpoint */ opendataSoftEndpoint?: string; /** * Custom PUBLIC api key for open data soft */ openDataSoftPublicApiKey?: string; componentWillLoad(): Promise; getInitialData: () => Promise; deleteAllFilters: () => void; render(): any; }