import { BQueryCollection } from './collection'; import { BQueryElement } from './element'; /** * Select a single element. Returns a wrapper for chainable operations. */ export declare const $: (selector: string | Element) => BQueryElement; /** * Select multiple elements. Returns a collection wrapper. */ export declare const $$: (selector: string | Element[] | NodeListOf) => BQueryCollection; //# sourceMappingURL=selector.d.ts.map