UNPKG

566 BTypeScriptView Raw
1import type { CSSProperties, FunctionalComponent } from 'vue';
2import type { VueNode } from '../_util/type';
3export interface EmptyProps {
4 prefixCls?: string;
5 class?: any;
6 style?: string | CSSProperties;
7 imageStyle?: CSSProperties;
8 image?: VueNode | null;
9 description?: VueNode;
10}
11interface EmptyType extends FunctionalComponent<EmptyProps> {
12 displayName: string;
13 PRESENTED_IMAGE_DEFAULT: VueNode;
14 PRESENTED_IMAGE_SIMPLE: VueNode;
15}
16declare const _default: EmptyType & import("@vue/runtime-core").Plugin;
17export default _default;