import { Slot } from 'vue';
export type TypeInfo = {
    imgUrl?: string;
    title?: string;
    subTitle?: string;
    slot?: Slot;
    imgSlot?: Slot;
    titleIconSlot?: Slot;
};
export declare const empty: {
    add(type: string, info: TypeInfo): void;
    use(type: string): TypeInfo;
};
