7 lines
266 B
TypeScript
7 lines
266 B
TypeScript
/// <reference types="react" />
|
|
import type { KcPagesProperties } from "./KcProperties";
|
|
export declare type KcAppProps = {
|
|
kcProperties?: KcPagesProperties;
|
|
};
|
|
export declare const KcApp: import("react").MemoExoticComponent<(props: KcAppProps) => JSX.Element>;
|