import { FixtureOptions } from './fixture-options.type';
export interface PropertyDto<T extends FixtureOptions> {
    value: T;
    name: string;
    constructorName: string;
    type: string;
}
