import type { FileData } from "./ta"

export interface IconsLookup {
  [key: string]: ImageMetadata
}

interface GlobGeneric<T> { 
  default: T
}

export type GlobAny = GlobGeneric<any>
export type GlobFiledata = GlobGeneric<FileData>
export type GlobImage = GlobGeneric<ImageMetadata>