import { INews } from '../interfaces/INews';
export interface HorizontalNewsCardListViewProps {
    titleImage: string;
    titleImageAlt?: string;
    titleImageTag?: string;
    subtitle: string;
    title: string;
    cards: INews[];
    tags?: Array<{
        target?: string;
        title: string;
    }>;
    breadcrumbs?: Array<{
        target?: string;
        title: string;
    }>;
    onTagEnable?: (tag: string) => void;
    onTagDisable?: (tag: string) => void;
    activeTags?: Array<string>;
    children?: React.ReactNode;
    teaser?: string;
}
export declare function HorizontalNewsCardListView({ titleImage, titleImageAlt, titleImageTag, title, subtitle, cards, tags, breadcrumbs, onTagEnable, onTagDisable, activeTags, children, teaser, }: HorizontalNewsCardListViewProps): import("react/jsx-runtime").JSX.Element;
