/**
 * ScrollyMotion Timeline Parser
 * Handles parsing of timeline animations.
 */
import type { TimelineStep } from "../../types";
import { ValueParser } from "./ValueParser";
export declare class TimelineParser {
    private valueParser;
    constructor(valueParser: ValueParser);
    parse(timelineStr: string): TimelineStep[];
}
