import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import type { Theme } from '../types'; type BorderProps = { invert?: boolean; variant?: 'default' | 'well' | 'raised' | 'cutout' | 'flat'; style?: StyleProp; sharedStyle?: StyleProp; radius?: number; children?: React.ReactNode; theme: Theme; }; declare const BorderWithTheme: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ invert, variant, style, sharedStyle, radius, theme, children, }: BorderProps) => React.JSX.Element), {}>; export { BorderWithTheme as Border }; //# sourceMappingURL=styleElements.d.ts.map