import * as TextStyle from "../styles/text-style.js"; export interface HyperLink { readonly type: "HyperLink"; readonly styleName: string; readonly text: string; readonly target: string; readonly style: TextStyle.TextStyle; } export interface HyperLinkProps { readonly styleName?: string; readonly text: string; readonly target: string; readonly style?: TextStyle.TextStyle; } export declare function create(props: HyperLinkProps): HyperLink; //# sourceMappingURL=hyper-link.d.ts.map