/// import { PaperProps } from '@components/Paper'; declare type Props = { scrollable?: boolean; isLoading?: boolean; hasKeyboardAvoidingView?: boolean; } & PaperProps; export declare function ScreenContainer({ scrollable, hasKeyboardAvoidingView, children, isLoading, ...rest }: Props): JSX.Element; export {};