/** * Check if the action supplied matches any known IAM actions. * * @param action the "service:action" string to check if it matches any known IAM actions. Can include wildcards. * @return true if the action matches at least one known IAM action, false otherwise. */ export declare function matchesAnyAction(action: string): Promise; /** * Checks to see if the action matches the provided pattern IAM action pattern. * * @param action the action to check, should not contain wildcards * @param pattern the pattern to match against, may contain wildcards */ export declare function actionMatchesPattern(action: string, pattern: string): boolean; //# sourceMappingURL=actions.d.ts.map