import { ReactNode } from "react"; import { ConfigProps } from "../../types"; type ScreenClassProps = { render: (screen: string) => ReactNode; }; export declare const ScreenClass: (props: ScreenClassProps & ConfigProps) => import("react/jsx-runtime").JSX.Element; export {};