import { Props } from '../../interfaces/Props';
export declare class ValueObject<Props_T extends Props> {
    readonly props: Props_T;
    constructor(props: Props_T);
    toString(): string;
    toHash(): string;
    equals(other: any): boolean;
}
