import { Document } from "mongoose";
import { ISeatModelAttributes } from "../entity/seat.entity";
import { IVenueModelInferCreation } from "./venue.dto";
export interface ISeatModelInferCreation extends ISeatModelAttributes, Document<string> {
    venue: string | IVenueModelInferCreation;
}
