import { Meta, StoryObj } from '@storybook/react'; import { Note } from './Note'; type NoteAndSelf = React.ComponentProps & { self: boolean; }; declare const meta: Meta; export default meta; type Story = StoryObj; export declare const SingleNote: Story; export declare const NoteWithCustomAuthor: Story; export declare const Editable: Story;