export interface Props { /** * 需要显示的平台 */ platform: ('web' | 'wechat' | 'ali' | 'toutiao' | 'native' | 'pc')[]; children?: any; } declare const _default: ({ platform, children }: Props) => any; export default _default;