import { type PropType, type StyleValue } from 'vue'; export interface EmptyProps { rootStyle?: StyleValue; rootClass?: string; description?: string; icon?: string; iconFamily?: string; iconSize?: string; } export declare const emptyProps: { rootStyle: PropType; rootClass: StringConstructor; description: StringConstructor; icon: { type: StringConstructor; default: string; }; iconFamily: StringConstructor; iconSize: StringConstructor; }; export interface EmptySlots { default(props: Record): any; icon(props: Record): any; description(props: Record): any; }