UNPKG

387 BTypeScriptView Raw
1import type { FC, ReactNode, CSSProperties } from 'react';
2import { NativeProps } from '../../utils/native-props';
3export declare type EmptyProps = {
4 image?: ReactNode;
5 imageStyle?: CSSProperties;
6 description?: ReactNode;
7} & NativeProps;
8/** @deprecated Empty has been deprecated and will be removed in the next major version. */
9export declare const Empty: FC<EmptyProps>;