import { PaginationModel } from './pagination_model';
export interface ResponseModel<T = any> {
    status: number;
    message?: string | null;
    dataResponse?: T;
    meta?: PaginationModel;
}
export declare const buildResponse: <T = any>(json: any) => ResponseModel<T>;
