import { ServerAPI } from "@signalk/server-api"; export type Identity = { uuid: string; token: string; }; export type VesselInfo = Identity & { mmsi?: string; imo?: string; name?: string; loa?: number; type?: string; }; export declare function getVesselInfo(app: ServerAPI): Promise; export declare function identify(app: ServerAPI, url?: string): Promise; //# sourceMappingURL=metadata.d.ts.map