/// <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;
