import { InfraError } from './InfraError';
export declare class IdentityProviderError extends InfraError {
readonly provider: string;
readonly providerErrorCode: string;
constructor(message: string, code: string, provider: 'aws', providerErrorCode: string);
}