import { ViewStyle, type ViewProps } from 'react-native'; import React from 'react'; import { ThemeName } from '../constants/Colors'; export type Props = ViewProps & { themeScheme?: "light" | "dark"; variant?: "default" | "secondary" | ThemeName; width?: ViewStyle["width"]; height?: ViewStyle["height"]; center?: boolean; }; declare const View: React.NamedExoticComponent; export default View; //# sourceMappingURL=View.d.ts.map