import type { ViewStyle, ColorValue, DimensionValue } from 'react-native'; import { type BackgroundProps } from './background'; import { type BorderProps } from './border'; export interface SizeProps { width?: DimensionValue; height?: DimensionValue; minWidth?: number; minHeight?: number; maxWidth?: number; maxHeight?: number; } export type BoxProps = SizeProps & BackgroundProps & BorderProps; export declare function buildSizeStyle(props?: SizeProps): Partial; export declare function buildBoxStyle(defaults: { defaultBackground: ColorValue; }, props?: BoxProps, overrides?: Partial): Partial; //# sourceMappingURL=box.d.ts.map