import { File } from '../files/shared/file.model';
import { Faq } from '../faqs/shared/faqs.model';
export interface StoreLineItem {
    item: Item;
    parent: DisplayItem;
    quantity: number;
}
interface DisplayItem {
    id: string;
    editionId: string;
    icon: string;
    name: string;
    editionName: string;
}
interface Item extends DisplayItem {
    lmiCategories: string[];
    description: string;
    keySellingPoints: string[];
    faqs: Faq[];
    screenshotUrls: string[];
    files: File[];
}
export {};
