import { Deeplink } from './common.js';
/**
 * MTProxy links
 */
export declare const mtproxy: Deeplink<{
    server: string;
    port: number;
    secret: string;
}>;
/**
 * Socks5 proxy links
 */
export declare const socks5: Deeplink<{
    server: string;
    port: number;
    user?: string;
    pass?: string;
}>;
