import { ShowElement } from "../../typings"; import React from "react"; export type ShowElementProps = Omit & { idx?: string | null; children: ShowElement["data"]["component"]; }; export declare function Show(props: ShowElementProps): React.JSX.Element;