import { CustomPageable } from './custom-pageable';
import { DatosArchivoProjection } from './datos-archivo-projection';
export interface CustomPageDatosArchivoProjection {
    data?: Array<DatosArchivoProjection>;
    pageable?: CustomPageable;
}
