import { Story } from '@ladle/react';
import { INewsImage, INewsCategory } from '../../interfaces/INews';
interface MiniCardConfigProps {
    name: string;
    subtitle: string;
    image: INewsImage;
    rightImage: INewsImage;
    tags: INewsCategory[];
    href: string;
    type: "light" | "dark";
    className?: string;
}
export declare const MiniCardStory: Story<MiniCardConfigProps>;
declare const _default: {
    title: string;
};
export default _default;
