import { FloatArray } from './types'; export declare type IPathSource = string | SupportedElement; declare type SupportedElement = SVGPathElement; export declare function convertToPathData(pathSource: FloatArray[] | IPathSource): IPathData; export interface IPathData { data: FloatArray[]; stringData: string | undefined; } export {};