import { StandardResourceObject } from "./standard-resource-object";
import { aanlegTypes, gevolgTypes, relationTypes } from "../json-ld/context";
export declare type Aanleg = keyof typeof aanlegTypes;
export declare function isAanleg(x: string): x is Aanleg;
export declare type Gevolg = keyof typeof gevolgTypes;
export declare function isGevolg(x: string): x is Gevolg;
export interface Relation extends StandardResourceObject {
    "gevolg"?: Gevolg;
    "aanleg": Aanleg;
    "type": RelationType;
}
export declare type RelationType = keyof typeof relationTypes;
export declare const getRelation: (arr: any[]) => Relation[] | undefined;
