import { IconColor, IconWithoutBackgroundProps } from '../../base/icon/icon'; import { HeadingProps } from '../../base/typography/heading/heading'; import { TextColor } from '../../base/typography/text/text'; export interface HeadingWithIconProps extends Omit, Omit { /** * Heading text */ children: React.ReactNode; /** * Additional class */ className?: string; /** * Heading text color */ headingColor?: TextColor; /** * Icon color */ iconColor?: IconColor; } export declare const HeadingWithIcon: (props: HeadingWithIconProps) => JSX.Element; export default HeadingWithIcon;