import { ConnectionStatusResponse } from "../../../interfaces/models/Connection";
export interface FetchConnectionStatusProps {
    userId: string;
}
declare function useFetchConnectionStatus(): (props: FetchConnectionStatusProps) => Promise<ConnectionStatusResponse>;
export default useFetchConnectionStatus;
