import { ComponentProps, ReactNode } from 'react'; export type HeadingProps = Omit, "children"> & { children: ReactNode; copyable?: boolean; copyLabel?: string; copyValue?: string; level?: number; tooltip?: string | null; }; export declare function Heading({ children, className, copyable, copyLabel, copyValue, level, tooltip, ...props }: HeadingProps): import("react").JSX.Element;