import type { ReactElement } from 'react';
type OauthAuthorizationPageProps = {
    clientName?: string | undefined;
    onClickAuthorizeOAuth: () => void;
    error: {
        message?: string;
        onGoBack?: () => void;
    };
};
declare const OauthAuthorizationPage: ({ clientName, onClickAuthorizeOAuth, error, }: OauthAuthorizationPageProps) => ReactElement;
export default OauthAuthorizationPage;
//# sourceMappingURL=OauthAuthorizationPage.d.ts.map