import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export declare const protobufPackage = "simplestamp.v1"; /** * SimpleStamp data models for storing attestations. * * Basic location data for where the Timestamp was created. * * License: Unlicense https://unlicense.org */ export interface Location { /** Latitude and longitude in the decimal notation format */ latitude: number; longitude: number; /** Elevation above or below sea level in meters */ altitude: number; /** If the device determining location reports the accuracy */ accuracyMeters: number; /** * Relative angle at which the trajectory is headed, from 0 to 360, with * 0 being true north and degrees being clockwise */ direction: number; /** Speed in meters/second */ velocity: number; } export declare const Location: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude>]: never; }; export interface MessageFns { encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; create, I>>(base?: I): T; fromPartial, I>>(object: I): T; } export {}; //# sourceMappingURL=location.d.ts.map