/// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// import type { IBanner, IUser } from '~/types'; export declare function createBannerMethods(mongoose: typeof import('mongoose')): { getBanner: (user?: IUser | null) => Promise; }; export type BannerMethods = ReturnType;