export interface ScreenLayoutProps { children: React.ReactNode; title: string; onPrev?: () => void; onNext?: () => void; } export declare const ScreenLayout: ({ children, title, onNext, }: ScreenLayoutProps) => import("@emotion/react/jsx-runtime").JSX.Element;