import { type TSchema } from '../../types/schema.mjs'; import { type TTuple } from '../../types/tuple.mjs'; import { type TTupleToObject } from '../tuple/to_object.mjs'; import { type TFromType } from './from_type.mjs'; export type TFromTuple>, Result extends TSchema = TFromType> = Result; export declare function FromTuple(types: [...Types]): TFromTuple;