import { type Primitive } from 'ts-type-forge'; import { type Type } from '../type.mjs'; export declare const createPrimitiveType: ({ defaultValue, is, typeName, }: Readonly<{ typeName: string; defaultValue: A; is: (value: unknown) => value is A; }>) => Type; //# sourceMappingURL=create-primitive-type.d.mts.map