import { AreaComponentProps } from '../../../src/types/areaTypes';
import * as React from 'react';
interface DrawingState {
}
export interface DrawSharedState {
    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 {};
