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