declare type QueryTarget = Element | DocumentFragment | Document; declare type QueryOptions = { root?: QueryTarget; as?: string; }; /** * Selects a single element and bind the element to the custom element. * @param {string} selector * @param {QueryOptions} Options */ export declare const useElement: (selector: string, options?: QueryOptions | undefined) => { current: T | null; }; /** * Selects multiple elements and binds those elements to the custom element. * @param {string} selector * @param {QueryOptions} Options */ export declare const useElements: (selector: string, options?: QueryOptions | undefined) => { current: T | null[]; }; export {}; //# sourceMappingURL=use-elements.d.ts.map