import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
interface ScreenboardModalProps {
    isScreenboardModalVisible?: boolean;
    onScreenboardClose?: () => void;
    backgroundColor?: string;
    style?: StyleProp<ViewStyle>;
    parameters?: any;
    isDarkMode?: boolean;
    position?: 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' | 'center';
    renderContainer?: (options: {
        defaultContainer: JSX.Element;
        dimensions: {
            width: number;
            height: number;
        };
    }) => React.ReactNode;
}
declare const ScreenboardModal: React.FC<ScreenboardModalProps>;
export default ScreenboardModal;
