/// import { ViewProps } from 'react-native'; /** * Define parameters for the whiteboard view. */ declare type WhiteboardViewProps = {} & ViewProps; /** * Getting whiteboard view from native layer. * This component displays the whiteboard when someone is sharing it. * The whiteboard will automatically subscribe when the view is mounted. */ export declare const WhiteboardView: (props: WhiteboardViewProps) => JSX.Element; export {};