import React from "react";
/**
 * 解锁提醒：比如需要付费或者没有查看权限的场景
 */
declare const YhwUnlockWarnRN: ({ content, buttonText, eventClick, }: {
    content?: string | undefined;
    buttonText?: string | undefined;
    eventClick?: (() => void) | undefined;
}) => React.JSX.Element;
export default YhwUnlockWarnRN;
