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