import React from 'react'; import { Surface } from 'react-native-paper'; import { ScrollViewProps } from 'react-native'; type Props = { children?: React.ReactNode; styles?: ScreenSurfaceStyles; scrollEnabled?: boolean; scrollViewProps?: Omit; Header?: React.ReactNode; } & React.ComponentProps; export declare function ScreenSurface({ children, styles: instanceStyles, scrollEnabled, scrollViewProps, Header, ...props }: Props): React.JSX.Element; declare const defaultStyles: (theme: import("./BrandConfigProvider").Theme) => readonly ["ScreenSurface", import("./BrandConfigProvider/styles/createStyles").NamedStyles>]; declare module './BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type ScreenSurfaceStyles = NamedStylesProp; export {};