import React from "react";
interface configData {
    content?: any;
    position?: string;
    mask?: boolean;
    title?: string;
    okText?: string;
    cancelText?: string;
    onOk?: () => void;
    onCancel?: () => void;
}
interface Props {
    config?: configData;
}
/**
 * 【基础组件】图层对话框（中间弹层对话框、底部弹出选择框等都适用）
 */
declare const YhwConfirmRN: ({ config }: Props) => React.JSX.Element;
export default YhwConfirmRN;
