import { Schema } from "../../Schema.js"; export declare function property(rawKey: RawKey, valueSchema: Schema): Property; export interface Property { rawKey: RawKey; valueSchema: Schema; isProperty: true; } export declare function isProperty>(maybeProperty: unknown): maybeProperty is O;