import { emptyObject } from '../emptyObject'; /** * Type representing an empty object literal. * * This type is derived from the `emptyObject` constant and represents * an object with no properties. * * @example * ```typescript * const obj: EmptyObject = {}; * ``` */ export type EmptyObject = typeof emptyObject; //# sourceMappingURL=emptyObject.types.d.ts.map