import { type AppId, type AutomationId, type GrantId, type IsoDateTime, type PermissionGrant, type Principal } from "@vendoai/core"; import { type VendoStore } from "../store.js"; /** 02-store ยง3 */ export declare function grantStore(store: VendoStore): { create(principal: Principal, grant: PermissionGrant): Promise; get(id: GrantId): Promise; list(principal: Principal, filter?: { tool?: string; appId?: AppId; automationId?: AutomationId; includeInactive?: boolean; }): Promise; revoke(id: GrantId, revokedAt: IsoDateTime): Promise; }; //# sourceMappingURL=grants.d.ts.map