import { PropertyResult } from './property.result';
export declare class BadRequestResult {
    message: string;
    error: string;
    statusCode: number;
    loggerId: string;
    errors: PropertyResult[] | null;
}
