import { MTableQueries } from "../../common-types";
import { ICoreSyctr } from "../../schema";
import { controllerResponse } from "../../utilities";
type ICoreSyctrErrorLogger = {
    [key in keyof ICoreSyctr]: string;
};
type ICoreSyctrListErrorLogger = {
    [key in keyof MSyctrList]: string;
};
declare class MSyctrList extends MTableQueries {
    syctr_id: string;
    constructor(init: MSyctrList);
    Validate?(): Partial<ICoreSyctrListErrorLogger>;
}
interface countryListControllerResponse extends controllerResponse {
    data?: ICoreSyctr[];
}
export { MSyctrList, ICoreSyctrErrorLogger, //interface
ICoreSyctrListErrorLogger, countryListControllerResponse };
