import { Static } from '@sinclair/typebox'; /** * microformats2 h-adr. * * All properties are optional. * * @see https://microformats.org/wiki/h-adr * @see https://indieweb.org/h-adr */ export declare const h_adr: import("@sinclair/typebox").TObject<{ altitude: import("@sinclair/typebox").TOptional>; 'country-name': import("@sinclair/typebox").TOptional; /** * additional street details */ 'extended-address': import("@sinclair/typebox").TOptional; /** * (or u-geo with a RFC 5870 geo: URL), optionally embedded h-geo */ geo: import("@sinclair/typebox").TOptional, import("@sinclair/typebox").TUnsafe<{ altitude?: number | undefined; latitude?: number | undefined; longitude?: number | undefined; }>]>>; /** * a mailing label, plain text, perhaps with preformatting */ label: import("@sinclair/typebox").TOptional; /** * decimal latitude */ latitude: import("@sinclair/typebox").TOptional>; /** * city/town/village */ locality: import("@sinclair/typebox").TOptional; /** * decimal longitude */ longitude: import("@sinclair/typebox").TOptional>; /** * post office mailbox */ 'post-office-box': import("@sinclair/typebox").TOptional; /** * postal code, e.g. ZIP in the US */ 'postal-code': import("@sinclair/typebox").TOptional; /** * state/county/province */ region: import("@sinclair/typebox").TOptional; /** * house/apartment number, floor, street name */ 'street-address': import("@sinclair/typebox").TOptional; }>; export type H_Adr = Static; //# sourceMappingURL=h-adr.d.ts.map