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