import { ItemId } from "~/types/ItemId";
interface FileSource {
    author: string;
    authorUrl: string;
    provider: string;
    termsUrl: string;
}
export interface Item {
    name: string;
    fileName: string;
    extension: string;
    altTitle: string | undefined;
    dimensions: string | undefined;
    url: string;
    thumbnailUrl: string;
    id: ItemId;
    isSelected: boolean;
    fileSource: FileSource;
}
export {};
