import { Transport } from './TransportInterface.js';
export interface TransportConfig {
    type: string;
    url: string;
    options: object;
    token: string | null;
}
export interface ClientConfig {
    transport: TransportConfig;
}
/**
 * Retrieves the appropriate transport based on the configuration file.
 */
declare function getTransportFromFile(): Transport | null;
export { getTransportFromFile };
