import { AnyCodec, Codec, Input, Output } from "../common/mod.js"; export type InputTuple = { readonly [K in keyof T]: Input; }; export type OutputTuple = { [K in keyof T]: Output; }; export declare function tuple(...codecs: [...T]): Codec, OutputTuple>;