import { PropsWithChildren } from 'react';
import { Call } from '@stream-io/video-client';
/**
 * The props for the StreamCallProvider component.
 */
export interface StreamCallProviderProps {
    /**
     * The call instance to provide to the component tree.
     */
    call?: Call;
}
/**
 * A provider for the call object.
 */
export declare const StreamCallProvider: (props: PropsWithChildren<StreamCallProviderProps>) => import("react/jsx-runtime").JSX.Element;
/**
 * A hook to get the call object from the closest provider.
 */
export declare const useCall: () => Call | undefined;
