import React, { ReactNode } from "react"; export default function AuthorizationWrapper({ extensionId, children, popupOptions, }: { extensionId?: string; children: ({ isAuthorized }: { isAuthorized: boolean; }) => ReactNode; popupOptions?: { height: number; width: number; }; }): React.JSX.Element; //# sourceMappingURL=authorization.d.ts.map