import { DrawCommand } from './command';
export declare type DrawToken = {
    name: DrawCommand;
    args: string[];
    relative?: boolean;
};
export declare function getTokens(pathData: string): DrawToken[];
