import type { ViewStyle } from 'react-native'; import { ColorValue } from '../functions/color'; import { EmValue } from '../functions/em'; import type { StyleContextValue } from '../style-context'; import type { NumberValue } from '../theme'; import type { ThemeContextValue } from '../theme-context'; export declare type BorderValue = { w: EmValue | { x?: EmValue; y?: EmValue; t?: EmValue; s?: EmValue; b?: EmValue; e?: EmValue; }; color: ColorValue | { x?: ColorValue; y?: ColorValue; t?: ColorValue; s?: ColorValue; b?: ColorValue; e?: ColorValue; }; style?: 'dashed' | 'dotted' | 'solid'; }; export declare function border(value: BorderValue, context: StyleContextValue, theme: ThemeContextValue): ViewStyle; //# sourceMappingURL=border.d.ts.map