export declare const isMocked: () => boolean;
export declare const intercept: (address: any, { persist, startIntercept, allowUnknown }?: {
    persist?: boolean | undefined;
    startIntercept?: boolean | undefined;
    allowUnknown?: boolean | undefined;
}) => {
    used: boolean;
    persist: boolean;
    buffers: never[];
    offset: number;
    length: number;
    address: any;
    clean: () => void;
};
export declare const cleanAll: ({ stopIntercept }?: {
    stopIntercept?: boolean | undefined;
}) => void;
export declare const restoreSocketSend: () => void;
export declare const interceptSocketSend: ({ allowUnknown }?: any) => void;
