@kadconsulting/dry
Version:
KAD Reusable Component Library
24 lines (23 loc) • 723 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
import { AllowedFileTypes, type AttachmentsProps } from './AttachmentsTypes';
declare const _default: {
title: string;
tags: string[];
component: import("react").ForwardRefExoticComponent<AttachmentsProps & import("react").RefAttributes<HTMLDivElement>>;
argTypes: {
onFilesSelected: {
action: string;
};
fileTypes: {
control: {
type: string;
options: AllowedFileTypes[];
};
};
};
};
export default _default;
type Story = StoryObj<AttachmentsProps>;
export declare const Default: Story;
export declare const Demo: Story;