export declare class CreateMediaDto {
    name: string;
    path: string;
    type: string;
    size: number;
    parent_id?: number;
}
