import type { TSchema } from '../schema/index'; import type { TProperties } from '../object/index'; import { type TMappedResult } from '../mapped/index'; import { type TExclude } from './exclude'; type TFromProperties = ({ [K2 in keyof K]: TExclude; }); type TFromMappedResult = (TFromProperties); export type TExcludeFromMappedResult> = (TMappedResult

); export declare function ExcludeFromMappedResult>(R: R, T: T): TMappedResult

; export {};