import type { StoryObj } from '@storybook/react';
import JokeCard from '../components/JokeCard';
declare const meta: {
    title: string;
    component: typeof JokeCard;
    parameters: {
        layout: string;
        controls: {
            expanded: boolean;
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
