import { PendingConnectionListResponse } from "../../../interfaces/models/Connection";
interface FetchReceivedPendingConnectionsParams {
    page?: number;
    limit?: number;
}
declare function useFetchReceivedPendingConnections(): (props?: FetchReceivedPendingConnectionsParams) => Promise<PendingConnectionListResponse>;
export default useFetchReceivedPendingConnections;
