export declare const checkApiKeyExistsStore: { get: (key: string) => Promise; set: (key: string, value: boolean) => Promise; delete: (key: string) => Promise; wrap: (key: string, fn: () => boolean | Promise) => Promise; }; /** * Early reject requests with already existing UUIDs/api keys to avoid * running the whole registration process and its rules. * TODO: Consider removing this once pine supports rule narrowing on multiple resources. */ export declare function gracefullyDenyConflictingRegistrations(uuid: string, apiKey: string | null | undefined): Promise;