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