import { Menu } from '..'; import { Authenticated } from '../../utils/client'; import { CategoryUpdate } from '../category'; import { Image } from './image'; export interface Params extends Authenticated { restaurantId: number; categories: CategoryUpdate[]; images?: Image[]; } export declare const create: ({ categories, restaurantId, images, authToken, }: Params) => Promise