import type { Nullable } from "./nullable.mjs";
type ObjectWithNullableProperty<O extends object, K extends string | symbol, T> = O & {
    [property in K]: Nullable<T>;
};
export type { ObjectWithNullableProperty };
