import React from 'react'; import { LOCALE } from "../interfaces/types/Locale"; declare global { interface Array { findLastIndex: Array['findIndex']; } interface String { capitalize: () => string; } } export type SSOV2Props = { onClose?: () => void; locale?: LOCALE; }; export declare const SSOV2: ({ onClose: onCloseProps, locale }: SSOV2Props) => React.JSX.Element; export { useSSOV2Store } from "./ssoStateManager/store"; export { getURLwithSSOTracking } from "./utils";