/** * Select what router to use. React router will only be used if it is in the context. */ export type LinkRouter = 'browser' | 'react-router'; export type mpcTheme = 'default' | 'playful' | 'elegant' | 'brutalist'; export type Image = string | { id: string | number; type: 'image' | string; provider: 'imagekit' | string; metadata: { width?: number; height?: number; url?: string; size?: number; fileId?: string; filePath?: string; fileType?: string; thumbnailUrl?: string; name: string; }; };