UNPKG

@hhgtech/hhg-components

Version:
18 lines (17 loc) 537 B
import React from 'react'; import { LOCALE } from "../interfaces/types/Locale"; declare global { interface Array<T> { findLastIndex: Array<T>['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";