export declare function get(el: T, attr: string): string | null export declare function get(el: T, attrs: string[]): Record[] | null export declare function get(els: T[], attr: string): string[] | null export declare function get(els: T[], attrs: string[]): Record[][] | null export declare function set(el: T, attr: string, val: unknown): T export declare function set(el: T, attrs: Record): T export declare function set(els: T[], attr: string, val: unknown): T[] export declare function set(els: T[], attrs: Record): T[] export declare function remove(el: T, attr: string | string[]): T export declare function remove(els: T[], attr: string | string[]): T[] export default { get, set, remove }