lark-cms
Version:
Multi terminal CMS component library
11 lines (10 loc) • 348 B
TypeScript
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;