import { HeadingProps } from './Heading';
import { ComponentPropsWithoutRef, FunctionComponent } from 'react';
export interface HeadingGroupProps extends ComponentPropsWithoutRef<'hgroup'> {
    level: HeadingProps['level'];
    subtitle?: string | null;
}
export declare const HeadingGroup: FunctionComponent<HeadingGroupProps>;
