import type { PropType } from 'vue'; import type { IconItem, FileItem, ColumnItem } from './types'; declare const _default: { data: { type: PropType; required: boolean; }; checked: PropType; grid: { type: BooleanConstructor; default: boolean; }; sort: { type: (BooleanConstructor | StringConstructor)[]; default: boolean; }; order: StringConstructor; icons: { type: PropType; default: () => ({ icon: string; type: string; types?: undefined; } | { icon: string; types: string[]; type?: undefined; })[]; }; smIcons: { type: PropType; default: () => ({ icon: string; type: string; types?: undefined; } | { icon: string; types: string[]; type?: undefined; })[]; }; columns: PropType; }; export default _default;