UNPKG

563 BTypeScriptView Raw
1import * as React from 'react';
2export interface TransferLocale {
3 description: string;
4}
5export interface EmptyProps {
6 prefixCls?: string;
7 className?: string;
8 style?: React.CSSProperties;
9 /** @since 3.16.0 */
10 imageStyle?: React.CSSProperties;
11 image?: React.ReactNode;
12 description?: React.ReactNode;
13 children?: React.ReactNode;
14}
15interface EmptyType extends React.FC<EmptyProps> {
16 PRESENTED_IMAGE_DEFAULT: React.ReactNode;
17 PRESENTED_IMAGE_SIMPLE: React.ReactNode;
18}
19declare const Empty: EmptyType;
20export default Empty;