import { ReactNode } from 'react';
type ProviderConnectionProps = {
    className?: string;
    closeOnSuccess?: boolean;
    connecting?: boolean;
    redirectUrlLabel?: string;
    successfullyConnected?: boolean;
};
declare const ProviderConnection: (props: ProviderConnectionProps) => ReactNode;
export default ProviderConnection;
