import React from 'react';
export interface WhiteboardProps {
    roomId: string;
    isAdmin?: boolean;
    allowedUsers?: string[];
    userId: string;
    transparentBackground?: boolean;
    videoStream?: MediaStream;
    externalApiRef?: React.MutableRefObject<WhiteboardExternalApi | null>;
}
export type WhiteboardExternalApi = {
    clear: () => void;
    getRoomId: () => string;
};
export declare const Whiteboard: React.FC<WhiteboardProps>;
//# sourceMappingURL=index.d.ts.map