export interface DeleteFilePayload { [key: string]: any; } export interface FileInfo { id: string | null; name: string | null; } export interface DeleteFileResponse { status: boolean; message: string; body: FileInfo; }