import { type Formatter } from './../interfaces/index.js'; /** * Takes an hyperlink cell value and transforms it into a real hyperlink, given that the value starts with 1 of these (http|ftp|https). * The structure will be "hyperlink" * * You can optionally change the hyperlink text displayed by using the generic params "hyperlinkText" in the column definition * For example: { id: 'link', field: 'link', params: { hyperlinkText: 'Company Website' } } will display "Company Website" * * You can also optionally provide the hyperlink URL by using the generic params "hyperlinkUrl" in the column definition * For example: { id: 'link', field: 'link', params: { hyperlinkText: 'Company Website', hyperlinkUrl: 'http://www.somewhere.com' } } will display "Company Website" */ export declare const hyperlinkFormatter: Formatter; //# sourceMappingURL=hyperlinkFormatter.d.ts.map