import React from 'react'; import { Text as HeadingRN, TextProps } from 'react-native'; import { MarginMixin, PaddingMixin } from '../../utils/spacing'; import { IHeadingColors } from '../../base/colors'; import { IHeadingSizes } from '../../base/typography'; /** * Heading Props */ export declare type HeadingDraculaProps = { /** * The size and type of Heading to be used. * Denotes hierarchy. */ size?: IHeadingSizes; /** * The Dracula UI color to be applied to the Heading. */ color?: IHeadingColors; } & TextProps & MarginMixin & PaddingMixin; /** * Heading is used to display headlines and other forms of hierarchical Text. * * Headings are similar to the base Text component, but restricted to certain * sizes and font weight. */ export declare function Heading(props: HeadingDraculaProps): React.CElement; //# sourceMappingURL=index.d.ts.map