import type { PaginationDto } from './PaginationDto';
export type ApiResponse_null_ = {
    success: boolean;
    message?: string;
    data?: number | null;
    errors?: Array<string>;
    pagination?: PaginationDto;
};
