export interface CustomComponent { type: string; props?: { [key: string]: any; }; children?: Array; } export declare function customComponentToReact({ type, props, children, }: CustomComponent): any;