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