export interface HeadingWithAnchorComponentClasses {
    /** Styles applied to the root element. */
    root: string;
    /** Styles applied to the container element. */
    container: string;
    /** Styles applied to the link element. */
    link: string;
    /** Styles applied to the link icon. */
    linkIcon: string;
}
export type HeadingWithAnchorComponentClassKey = keyof HeadingWithAnchorComponentClasses;
export declare const headingWithAnchorComponentClasses: HeadingWithAnchorComponentClasses;
