import { Connection } from '../services/userConnectionsService'; export interface UseUserConnectionsResult { connections: Connection[]; isLoading: boolean; error: string | null; refreshConnections: () => Promise; getConnectionsByUsername: (username: string) => Promise; getConnectionsByUserId: (userId: string) => Promise; uploadUserProfilePicture: (imageData: string, fileType?: string) => Promise; } export declare const useUserConnections: () => UseUserConnectionsResult; //# sourceMappingURL=useUserConnections.d.ts.map