import { AlgorithmNode, TurnNode } from './Nodes'; export declare class Algorithm { readonly raw: string; readonly ast: AlgorithmNode; constructor(alg: string); get parsed(): string; get clean(): string; get inverse(): string; get rotationless(): string; get sequence(): string; get turns(): TurnNode[]; private normalize; private ensureMaxLength; }