import { INewsCategory } from '../interfaces/INews';
import { PropsWithChildren } from 'react';
export interface HeroSectionProps {
    src: string;
    alt?: string;
    withGradientOnMobile?: boolean;
    title?: string;
    description?: string;
    boxAlignment?: "left" | "right" | "center";
    categories?: INewsCategory[];
    transparentOnMobile?: boolean;
    imageTag?: string;
    className?: string;
    target?: string;
}
export declare function HeroSection({ src, alt, withGradientOnMobile, children, title, description, boxAlignment, categories, transparentOnMobile, imageTag, className, target, }: PropsWithChildren<HeroSectionProps>): import("react/jsx-runtime").JSX.Element;
