import {ViewProps} from '@tarojs/components' import {FunctionComponent, ReactNode} from 'react' export interface EmptyProps extends ViewProps { description?: string image?: 'error' | 'search' | 'default' | 'network' | string emptyColor?: string children?: ReactNode } declare const Empty: FunctionComponent export {Empty}