import * as React from "react"; import { ColorSchemeName } from "react-native"; import { DefaultTheme } from "styled-components"; import { Settings } from "./settings"; declare type Props = { children: React.ReactNode; theme?: DefaultTheme; settings?: Settings; colorSchemeName?: ColorSchemeName; }; declare const ThemeProviver: ({ ...props }: Props) => JSX.Element; export default ThemeProviver;