import { PropsWithChildren, ReactElement } from 'react'; type ScreenPropsT = PropsWithChildren<{ title?: string; mb?: number; navbarActionComponent?: ReactElement; }>; export declare const Screen: ({ title, navbarActionComponent, mb, children }: ScreenPropsT) => JSX.Element; export {};