/// <reference types="react" />
import './index.css';
import { ScreenShareRoleType } from '@classroom/infra/stores/common/toolbar/type';
export declare const ScreenShareDialog: ({ id, onOK, onCancel, }: {
    id: string;
    onOK: (roleType: ScreenShareRoleType) => void;
    onCancel?: (() => void) | undefined;
}) => JSX.Element;
