export type SwirlLinkColor = "default" | "subdued"; export type SwirlLinkTarget = "_self" | "_blank" | "_parent" | "_top"; export declare class SwirlLink { color?: SwirlLinkColor; href: string; label: string; target?: SwirlLinkTarget; render(): any; }