import { Story } from '@ladle/react';
import { Color } from '../../interfaces/INews';
interface HorizontalNewsCardConfigProps {
    customBackgroundColor: Color;
    textColor: "dark" | "light";
    title: string;
    description: string;
    href: string;
    image: string;
    imageAlt: string;
    category: string;
    date: string;
    location: string;
    variant?: "light" | "dark" | "undefined";
}
export declare const HorizontalNewsCardStory: Story<HorizontalNewsCardConfigProps>;
declare const _default: {
    title: string;
};
export default _default;
