import { Construct, Resource } from '@aws-cdk/core'; export interface OIDCIdentityProviderProps { /** * The EKS cluster name. */ readonly clusterName: string; } export declare class OIDCIdentityProvider extends Resource { /** * Returns the ARN of the identity provider. * * @attribute */ readonly providerArn: string; private static fn; constructor(scope: Construct, id: string, props: OIDCIdentityProviderProps); }