import { WrapperGS } from "./WrapperGS"; export declare class GS { private _all; static Query(selector: any): GS; constructor(selector: any, inElement?: Element); get all(): WrapperGS[]; get first(): WrapperGS | undefined; get last(): WrapperGS | undefined; forEach(callbackfn: (value: WrapperGS, index: number, array: WrapperGS[]) => void, thisArg?: any): void; text(value: string): void; html(value: string): void; disable(): void; enable(): void; enableFlip(): void; enableSet(value: boolean): void; hide(): void; show(): void; showFlip(): void; showSet(value: boolean): void; inactive(): void; active(): void; activeFlip(): void; activeSet(value: boolean): void; addClass(className: string): void; removeClass(className: string): void; cut(): void; }