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