import { BrushPoint } from '../../components'; /** * "0,0 0,34" -> [[0, 0], [0, 34]] * "0,0,0,34" -> [[0, 0], [0, 34]] */ export declare function deserializePoints(points: string): [number, number][]; export declare function deserializeBrushPoints(points: string): BrushPoint[];