import { AreaComponentProps } from '../../../src/types/areaTypes';
import { SpaceSharedState } from '../../../src/core/spaceStore';
import React from 'react';
interface DrawingState {
}
export interface DrawSharedState extends SpaceSharedState {
    lines: Line[];
    strokeWidth: number;
}
export interface Line {
    id: string;
    points: {
        x: number;
        y: number;
    }[];
    color: string;
    width: number;
}
export declare const Draw: React.FC<AreaComponentProps<DrawingState>>;
export {};
