import { ValueHandler } from '../types/value-handler.interface';
import { PropertyDto } from '../types/property-dto.interface';
import { ObjectLiteral } from '../types/fixture-options.type';
export declare class ObjectLiteralValueHandler<P extends ObjectLiteral> implements ValueHandler<P> {
    shouldHandle(propertyDto: PropertyDto<P>): boolean;
    produceValue<T>(propertyDto: PropertyDto<P>): any;
}
