import { PlatformType } from "../../blogs/schemas/blog.schema";
export declare class UpdateCategoryDto {
    name?: string;
    slug?: string;
    platformType?: PlatformType;
}
