import { ResourceIntent, ResourceType } from "../types/policy";
/**
 * Retrieves the intent with the specified name from the given resource type.
 * @param {ResourceType} resourceType - The resource type containing the intents.
 * @param {string} intentName - The name of the intent to retrieve.
 * @returns {ResourceIntent} The intent with the specified name.
 * @throws {Error} If the intent is not found on the resource type.
 */
export default function getIntent(resourceType: ResourceType, intentName: string): ResourceIntent;
//# sourceMappingURL=getIntent.d.ts.map