export declare enum ResourceType {
    Web = "web",
    Video = "video"
}
export type DishData = {
    title: string;
    body: string;
    tags: string[];
    country: string;
    url: string;
    resource_type: ResourceType;
    source: string;
    thumbnail?: string;
};
//# sourceMappingURL=DishData.type.d.ts.map