import { ShopStatus } from '@prisma/client';
export declare class SetShopStatusDto {
    status: ShopStatus;
    reason?: string;
    note?: string;
}
