import type { AppAssociation } from "@edenapp/types"; import type { AppAssociationManager } from "./AppAssociationManager"; export declare class AppAssociationHandler { private manager; constructor(manager: AppAssociationManager); handleGet(args: { key: string; }): { association: AppAssociation | undefined; }; handleSet(args: { key: string; appId: string; kind: string; label?: string; }): Promise<{ success: boolean; }>; handleRemove(args: { key: string; }): Promise<{ success: boolean; }>; handleList(args: { kindPrefix?: string; }): { associations: Record; }; } //# sourceMappingURL=AppAssociationHandler.d.ts.map