export declare class KeyNotRegisteredError extends Error { constructor(); } export declare class PropertyDataError extends Error { readonly status: number; readonly endpoint: string; readonly upstreamMessage: string; constructor(status: number, endpoint: string, upstreamMessage: string); } export declare class BadResponseError extends Error { readonly endpoint: string; readonly length: number; constructor(endpoint: string, length: number); } export interface PropertyDataKey { createdAt: string; updatedAt: string; } export declare function loadAccountKey(accountId: string): Promise; export declare function resolveAccountApiKey(accountId: string): Promise; export interface CallOptions { endpoint: string; toolName: string; accountId: string; params: Record; } export declare function propertyDataCall(opts: CallOptions): Promise; //# sourceMappingURL=propertydata-api.d.ts.map