/** * Convert a resource pattern from iam-data to a regex pattern. * Variables like `${BucketName}` become named capture groups. * * @param pattern - The IAM resource type ARN pattern (e.g. `arn:${Partition}:s3:::${BucketName}/${ObjectName}`) * @returns A regex string anchored with `^...$` that matches concrete ARNs against the pattern */ export declare function convertResourcePatternToRegex(pattern: string): string; //# sourceMappingURL=resourcePatterns.d.ts.map