import { MockRequestSchema } from '../../protocol';
import { MatchingContext } from '../context';
export declare class BodyMatcher {
    private schema;
    constructor(schema: MockRequestSchema);
    private get expectedBody();
    private get expectedBodyStr();
    match(ctx: MatchingContext): Promise<boolean>;
    private matchAsString;
    private matchAsObject;
}
//# sourceMappingURL=body.d.ts.map