/** * @typedef {Object} PropsType * @prop {React.ReactNode} children * @prop {string} [orgCode] * @prop {string} [postLoginRedirectURL] * @prop {Object.} [authUrlParams] * * @typedef {PropsType & React.AnchorHTMLAttributes} Props */ /** * @param {Props} props */ export function RegisterLink({ children, orgCode, postLoginRedirectURL, authUrlParams, ...props }: Props): import("react").JSX.Element; export type PropsType = { children: React.ReactNode; orgCode?: string; postLoginRedirectURL?: string; authUrlParams?: { [x: string]: string; }; }; export type Props = PropsType & React.AnchorHTMLAttributes; //# sourceMappingURL=RegisterLink.d.ts.map