/**
 * @public
 */
export type TProperty<K extends string | number | symbol, TValue> = {
    [P in K]: TValue;
};
//# sourceMappingURL=t-property.d.ts.map