export declare class Direction { readonly isForward: boolean; constructor(isForward: boolean); get isBackward(): boolean; asApiString(): string; reverse(): Direction; static get Forward(): Direction; static get Backward(): Direction; }