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;
