import { WrapperGS } from '../core/WrapperGS'; export declare class AnchorGS extends WrapperGS { static ForHTMLElement(el: HTMLElement): boolean; constructor(el: HTMLAnchorElement | string); get href(): string; set href(value: string); get target(): string; set target(value: string); get download(): string; set download(value: string); get rel(): string; set rel(value: string); }