import { MalfunctionError } from 'helpful-errors';
export declare class DomainObjectMetadataMustBeDefinedError extends MalfunctionError {
    constructor({ domainObjectName, nameOfFunctionNeededFor, }: {
        domainObjectName: string;
        nameOfFunctionNeededFor: string;
    });
}
