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