import { Guid } from '@cashfarm/lang';
import { Identity } from '@cashfarm/plow';
export declare class CreatedResponse {
    message: string;
    id: string | number | Guid | Identity<any>;
    resourceUrl?: string;
    readonly status = 201;
    constructor(message: string, id: string | number | Guid | Identity<any>, resourceUrl?: string);
}
