export declare class LodDecisionCard { /** * Decision title */ decisionTitle: string; /** * Sparql endpoint */ endpoint: string; /** * Decision type */ type: string; /** * Organ of decision */ organ: string; /** * Date of decision */ date: string; /** * Decision url */ url: string; /** * ; Status of decision */ status: string; /** * Uri to get decision */ uri: string; decisionType: "regulation" | "decision"; uriResult: any; statusColor: boolean | undefined; statusValue: string; watchPropHandler(newBesluit: any): void; private setStatus; componentWillLoad(): void; getBesluit(): Promise; get query(): string; get statusGreen(): boolean; formatDate(date: string): string; get statusRed(): boolean; get statusNa(): boolean; render(): any; }