import React from 'react'; import { View, ViewProps } from 'react-native'; import { IBackgroundColors, IBorderColors } from '../../base/colors'; import { MarginMixin, PaddingMixin } from '../../utils/spacing'; import { ISizes } from '../../base/sizes'; import { IBorderWidth } from '../../base/borders'; /** * Box Props */ export declare type BoxProps = { /** The background color. */ color?: IBackgroundColors; /** The border radius. */ rounded?: IBorderWidth; height?: ISizes; width?: ISizes; /** The glow color. */ /** The border color. */ borderColor?: IBorderColors; } & MarginMixin & PaddingMixin & ViewProps; /** * Box is the most primitive component of Dracula UI. * Using Box allows for consumers of the components library to compose * more complex patterns, components, and UIs. * * Box includes built-in Color and Spacing properties that make building * complex components convenient and consistent. */ export declare function Box(props: BoxProps): React.CElement; //# sourceMappingURL=index.d.ts.map