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