import { CardProps } from '../card'; import './index.css'; import { ShareAudioProps } from '../room-screen-share-state-bar/share-audio'; import { ShareScreenContentHintProps } from '../room-screen-share-state-bar/share-screen-content-hint'; export interface ShareSelectionWindowProps extends ShareAudioProps, ShareScreenContentHintProps { currentShareType: string; onChangeShareType: (type: string) => void; screens: CardProps[]; applications: CardProps[]; } export declare const ShareSelectionWindow: (props: ShareSelectionWindowProps) => import("react").JSX.Element;