import { EmailMatch, HashtagMatch, MentionMatch, PhoneMatch } from 'autolinker/dist/es2015'; export declare const getEmailUrl: (match: EmailMatch) => string; export declare const getHashtagUrl: (match: HashtagMatch, service?: 'facebook' | 'instagram' | 'twitter' | false, native?: boolean) => string; export declare const getMentionUrl: (match: MentionMatch, service?: 'instagram' | 'soundcloud' | 'twitter' | false, native?: boolean) => string; export declare const getPhoneUrl: (match: PhoneMatch, method?: 'sms' | 'tel' | 'text' | boolean) => string;