import type { Context } from 'hono'; import type * as App from '../../App.js'; import type * as FundingTransfers from '../../db/tables/fundingTransfers.js'; import * as Response from '../../internal/Response.js'; /** Returns the funding owner encoded by an API-key principal. */ export declare function owner(c: Context): FundingTransfers.Owner | null; /** Returns the error used when a funding resource has no API-key owner. */ export declare function unauthorized(c: Context): Response & import("hono").TypedResponse<{ error: { code: "unauthorized"; details?: readonly Response.error.Detail[] | undefined; message: string; }; requestId: string; }, 401, "json">; //# sourceMappingURL=Access.d.ts.map