import { ValueObject } from "@src/domain";
import type { Adr } from "./Adr";
declare type Props = {
    from: Adr;
    relation: string;
    to: Adr;
};
export declare class AdrRelation extends ValueObject<Props> {
    constructor(from: Adr, relation: string, to: Adr);
    get from(): Adr;
    get relation(): string;
    get to(): Adr;
    toMarkdown(): string;
}
export {};
//# sourceMappingURL=AdrRelation.d.ts.map