import type { App } from 'vue';
import FileCard from './FileCard.vue';
import List from './List.vue';
export type { FileCardProps, FileCardListProps, FileCardListItem, FileCardSpinProps, FileCardSemanticType, FileCardListSemanticType, CardInfo, CardType, PresetIcons, } from './interface';
type FileCardType = typeof FileCard & {
    List: typeof List;
    install: (app: App) => App;
};
declare const _default: FileCardType;
export default _default;
export { FileCard, List as FileCardList };
