import { ReactElement } from 'react'; import { IconName } from './icon'; export type HeadingSize = 'small' | 'medium' | 'big'; export type HeadingTheme = 'dark' | 'light' | 'live' | 'live-light'; export type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; export interface HeadingProps { label?: string; icon?: IconName; emoji?: string; children?: string; size?: HeadingSize; theme?: HeadingTheme; level?: HeadingLevel; align?: AlignSetting; } export declare function Heading({ label, icon, emoji, children, size, theme, level, align, }: HeadingProps): ReactElement;