import { Call, StreamVideoClient } from '@stream-io/video-client';
export interface UseInitializeCallProps {
    client?: StreamVideoClient;
    callType: string;
    callId: string;
    handleError: (error: any) => void;
}
/**
 * Hook to initialize and manage a Call instance.
 */
export declare const useInitializeCall: ({ client, callType, callId, handleError, }: UseInitializeCallProps) => Call | undefined;
