import { ARID, Resource } from "../types/policy.js";
/**
 * Retrieve a resource by its ARID.
 * @param arid - The Archon Resource Identifier (ARID) of the resource to retrieve.
 * @returns A promise resolving to the resource, or null if not found.
 */
export default function getResourceById(arid: ARID): Promise<Resource | null>;
//# sourceMappingURL=getResourceById.d.ts.map