import { CustomPageable } from './custom-pageable';
import { TablaCatalogoBuscarProjection } from './tabla-catalogo-buscar-projection';
export interface CustomPageTablaCatalogoBuscarProjection {
    data?: Array<TablaCatalogoBuscarProjection>;
    pageable?: CustomPageable;
}
