import { ComponentProps, RefAttributes } from 'react';
import type { StreamVideoParticipant } from '@stream-io/video-client';
export type BaseVideoPlaceholderProps = {
    participant: StreamVideoParticipant;
} & RefAttributes<HTMLDivElement> & ComponentProps<'div'>;
export declare const BaseVideoPlaceholder: import("react").ForwardRefExoticComponent<Omit<BaseVideoPlaceholderProps, "ref"> & RefAttributes<HTMLDivElement>>;
