@clerk/clerk-js
Version:
Clerk JS library
14 lines (13 loc) • 573 B
TypeScript
import React from 'react';
import type { Flex } from '../customizables';
import type { LocalizationKey } from '../localization';
import type { PropsOfComponent } from '../styledSystem';
type SuccessPageProps = Omit<PropsOfComponent<typeof Flex>, 'headerTitle' | 'title'> & {
title?: LocalizationKey;
text?: LocalizationKey | LocalizationKey[];
finishLabel?: LocalizationKey;
contents?: React.ReactNode;
onFinish?: () => void;
};
export declare const SuccessPage: (props: SuccessPageProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};