/// <reference types="react" />
export interface HeadingSectionProps extends React.HTMLAttributes<HTMLElement> {
    passProps?: object;
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    heading?: string;
    supportingText?: string;
    buttonInfo?: {
        buttonText: string;
        buttonLink: string;
    };
    logoImage?: string;
    onClick?: () => void;
}
