///
import { Breakpoint } from '../types';
import { BoxProps } from '../Box';
export declare type LocalHeadingProps = {
isSubHeading?: boolean;
/** Indicates the breakpoint at which the heading font size should shrink. */
shrinkBelow?: Breakpoint;
};
export declare type HeadingProps = BoxProps & LocalHeadingProps;
export declare const Heading: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};