import { Branded } from 'schemata-ts/brand'; import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface LatLongBrand { readonly LatLong: unique symbol; } /** * Representing a Lat/Long coordinate. * * @since 1.0.0 * @category Model */ export declare type LatLong = Branded; /** * @since 1.0.0 * @category Model */ export declare type LatLongS = SchemaExt; /** * @since 1.0.0 * @category Pattern */ export declare const LatLongPattern: PB.Pattern; /** * Representing a Lat/Long coordinate. * * @since 1.0.0 * @category Schema */ export declare const LatLong: LatLongS; export {}; //# sourceMappingURL=LatLong.d.ts.map