export declare class GlideVector { /** * Returns true if the vector contains the specified element. */ contains(elem: any): boolean; /** * Returns a string representation of the vector. */ toString(): string; }