import React from 'react'; export declare function ProTagComponent({ text, tooltip, }: { text?: React.ReactNode; tooltip?: React.ReactNode; }): JSX.Element; export declare function withGlobalProvider(Component: React.ComponentType): (props: T) => JSX.Element; export declare const SoftHardLockButtons: (props: object) => JSX.Element; export declare const ProTag: (props: object) => JSX.Element; interface IOptions { type: 'CR' | 'CR_SET'; dialogProps?: { description?: string; container?: string | HTMLElement | Element | null; }; pageProps?: { title?: string; desc?: string; image?: string; imgList?: [{ imgUrl: string; }]; }; } export declare function withSoftHardLock(Component: React.ComponentType, options: IOptions): (props: T) => any; export {};