export interface ISocketConfig {
    isEnabled: boolean;
    url: string;
}
export declare class SocketConfig implements ISocketConfig {
    isEnabled: boolean;
    url: string;
    constructor(isEnabled: boolean, url: string);
}
