import { ReactNode } from 'react'; type SizeOption = 's' | 'm' | 'l' | 'xl'; export interface HeadingProps { caption?: string; children?: ReactNode; size?: SizeOption; useHodsTag?: boolean; [key: string]: any; } declare const Heading: ({ children, size, caption, useHodsTag, ...attrs }: HeadingProps) => import("react/jsx-runtime").JSX.Element; export declare const XLargeHeading: ({ children, caption, useHodsTag, ...attrs }: HeadingProps) => import("react/jsx-runtime").JSX.Element; export declare const LargeHeading: ({ children, caption, useHodsTag, ...attrs }: HeadingProps) => import("react/jsx-runtime").JSX.Element; export declare const MediumHeading: ({ children, caption, useHodsTag, ...attrs }: HeadingProps) => import("react/jsx-runtime").JSX.Element; export declare const SmallHeading: ({ children, caption, useHodsTag, ...attrs }: HeadingProps) => import("react/jsx-runtime").JSX.Element; export default Heading;