import React from 'react';
interface StickyNoteProps {
    id: string;
    content: string;
    position: {
        x: number;
        y: number;
    };
    color: string;
    onRemove: (id: string) => void;
}
export declare const StickyNote: React.FC<StickyNoteProps>;
export {};
