import { SpacingSize } from '../../common/SpacingProps'; import { FontSize } from '../../components'; export declare class BiLink { /** * The host element */ el: HTMLBiLinkElement; /** * The URL that the link will navigate to */ href: string; /** * The size of the link, with a default value of 'medium' */ size?: Exclude; /** * The state of the link, indicating whether it is underlined or not, with a default value of 'underline' */ state?: 'underline' | 'noline'; /** * The color of the link, with a default value of 'dark' */ color?: 'dark' | 'light' | 'blue'; /** * The target of the link, with a default value of '_self' */ target?: '_blank' | '_parent' | '_self' | '_top' | '_unfencedTop'; /** * The spacing on the top of the element */ top?: SpacingSize; /** * The spacing on the bottom of the element */ bottom?: SpacingSize; /** * The spacing on the left of the element */ left?: SpacingSize; /** * The spacing on the right of the element */ right?: SpacingSize; componentWillLoad(): void; render(): any; }