import { default as React } from 'react'; import { StyleProps } from '../../style-engine'; export type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; declare const headingStyles: import('../..').StylesDef<{ level: { 1: string; 2: string; 3: string; 4: string; 5: string; 6: string; }; margin: { default: string; none: string; }; }>; type HeadingVariantProps = StyleProps & { level: HeadingLevel; }; export interface HeadingProps extends Omit, keyof HeadingVariantProps>, HeadingVariantProps { } export declare function Heading({ level, margin, children, className, ...props }: HeadingProps): React.JSX.Element; export {};