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