import React from "react"; export type CenteredViewProps = { children: React.ReactNode; maxWidth?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl"; outerClassName?: string; className?: string; fullScreen?: boolean; }; export declare const CenteredView: React.ForwardRefExoticComponent>;