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