type CategoryMap = { 'icons': 'Icons'; 'emojis': 'Emojis'; 'clipart': 'Clipart'; 'mine': 'Mine'; }; type CategoryTypes = ['All', 'Icons', 'Emojis', 'Clipart', 'Mine']; type VectorCategories = { map: CategoryMap; types: CategoryTypes; normalize: (category: string) => Exclude; }; export declare const vectorCategories: VectorCategories; export type VectorCategory = Exclude; export interface VectorItem { name: string; category: VectorCategory; url: string; isCustom?: boolean; } export interface RecentVector { name: string; category: string; url: string; isCustom?: boolean; lastUsed: number; } export declare const recentVectorsStore: import("svelte/store").Writable; export declare const vectorUtils: { getRecentVectors(): RecentVector[]; addRecentVector(vector: VectorItem): RecentVector[]; removeCustomVector(name: string): RecentVector[]; }; export {};