import type { StandardSchemaV1 } from "@tsimpl/validation"; import type { StructToken } from "../types/struct-descriptor.js"; type StructDefine = (schema: StandardSchemaV1) => StructToken; type NamedStruct = StructDefine & { define: StructDefine; }; type StructFactory = StructDefine & { define: StructDefine; name(name: string): NamedStruct; }; export declare const struct: StructFactory; export {};