/// export declare const renderHTML: (des: string) => JSX.Element | null; interface CompStateProps { dataState: any; type: 'loading' | 'empty'; tip?: string; } declare const useCompState: (props: CompStateProps) => { stateIcon: JSX.Element | null; stateTip: JSX.Element | null; }; export default useCompState;