import { INewsCategory } from '../interfaces/INews';
export interface HeroBoxProps {
    title: string;
    description: string;
    selfAligned?: "left" | "right" | "center";
    categories?: INewsCategory[];
    className?: string;
    transparentOnMobile?: boolean;
    target?: string;
}
export declare function HeroBox({ title, description, categories, className, selfAligned, transparentOnMobile, target, }: HeroBoxProps): import("react/jsx-runtime").JSX.Element;
