@fluster.io/dev
Version:
16 lines (15 loc) • 397 B
TypeScript
import { StoryObj } from '@storybook/react-vite';
declare const meta: {
title: string;
component: {
({ children, ...props }: import('.').HlProps): import('react').ReactNode;
displayName: string;
};
parameters: {
children: string;
color: string;
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;