import { inferParsedPropertySchema, inferRawObjectFromPropertySchemas, ObjectSchema, PropertySchemas } from './types'; export declare function objectWithoutOptionalProperties>(schemas: T): inferObjectWithoutOptionalPropertiesSchemaFromPropertySchemas; export type inferObjectWithoutOptionalPropertiesSchemaFromPropertySchemas> = ObjectSchema, inferParsedObjectWithoutOptionalPropertiesFromPropertySchemas>; export type inferParsedObjectWithoutOptionalPropertiesFromPropertySchemas> = { [K in keyof T]: inferParsedPropertySchema; }; //# sourceMappingURL=objectWithoutOptionalProperties.d.ts.map