import { DaumiShape } from './daumiShape'; import { SuperPath2D } from './SuperPath2D'; export declare const makeSegment: ({ daumiShape, numberOfLanes, }: { daumiShape: DaumiShape; numberOfLanes: number; }, path: SuperPath2D, { startPercentage, endPercentage, laneNumber, }: { startPercentage: number; endPercentage: number; laneNumber: number; }) => void; export declare const makeCurve: ({ daumiShape, }: { daumiShape: DaumiShape; }, path: SuperPath2D, { startPercentage, endPercentage, t, }: { startPercentage: number; endPercentage: number; t: number; }) => void;