export * from './core'; export * from './helpers/index'; export * from './com'; export * from './ctrls'; import { WrapperGS, GS } from './core'; import * as comLib from './com'; import * as ctrlsLib from './ctrls'; import * as helpersLib from './helpers/index'; export declare const com: typeof comLib; export declare const ctrls: typeof ctrlsLib; export declare const helpers: typeof helpersLib; /** * Wrap element in WrapperGs * @param el */ export declare function w(el: WrapperGS): WrapperGS; export declare function w(el: HTMLElement): WrapperGS; export declare function w(el: unknown): WrapperGS | undefined; export declare function q(selector: any): GS;