export type LSystemParams = {
    name: string;
    axiom: string;
    rules: {
        F?: string;
        X?: string;
        Y?: string;
        L?: string;
        R?: string;
    };
    iterations: number;
    distance: number;
    angle: number;
    lengthScale?: number;
};
export declare const lSystemPresets: LSystemParams[];
