import React from 'react'; import { Story } from '@storybook/react'; import { DropzoneProps } from './Dropzone'; declare const _default: { title: string; component: ({ maxSize, disabled, error, accept, children, dropText, promptText, limiterText, size, status, fileName, onUpdate, onDelete, dragScale, onDrop, ...other }: DropzoneProps & React.HTMLAttributes) => JSX.Element; argTypes: { children: { table: { disable: boolean; }; }; onDrop: { table: { disable: boolean; }; action: string; }; onUpdate: { table: { disable: boolean; }; action: string; }; onDelete: { table: { disable: boolean; }; action: string; }; }; }; export default _default; export declare const Demo: Story;