7 lines
281 B
TypeScript
7 lines
281 B
TypeScript
/// <reference types="react" />
|
|
import type { KcProps } from "./KcProps";
|
|
import type { KcContext } from "../KcContext";
|
|
export declare const Register: import("react").MemoExoticComponent<({ kcContext, ...props }: {
|
|
kcContext: KcContext.Register;
|
|
} & KcProps) => JSX.Element>;
|