import { Associative } from "@tsplus/stdlib/prelude/Associative/definition"; /** * Given a struct of `Associative`s, returns an `Associative` for the structure. * @tsplus static Associative/Ops struct * @tsplus location "@tsplus/stdlib/prelude/Associative/struct" */ export declare function struct>(associatives: { [K in keyof O]: Associative; }): Associative<{ readonly [K in keyof O]: O[K]; }>; //# sourceMappingURL=struct.d.ts.map