import { Path } from './path'; export declare class SvgPath extends Path { private _d; get d(): string; set d(d: string); constructor(d?: string); } declare const TranslatableSvgPath_base: new (...args: any[]) => import("../transformable").TranslatableType>; export declare class TranslatableSvgPath extends TranslatableSvgPath_base { isPointInPath(x: number, y: number): boolean; } declare const RotatableSvgPath_base: new (...args: any[]) => import("../transformable").RotatableType; export declare class RotatableSvgPath extends RotatableSvgPath_base { } export {};