import { IParamRet, UPRM, IParamSP } from '../igeneric';
import { ExecSP } from './exec-sp';
export declare class QuerySPOne extends ExecSP {
    protected msCustomErrMsg: string;
    protected mbCustomRet: boolean;
    protected mbNonZeroPositiveIsOk: boolean;
    protected mbAudit: boolean;
    constructor();
    fnQueryOne(aoParams: any, aoUPRM: UPRM): Promise<IParamRet>;
    customReturn(aoData: any): Promise<IParamRet>;
    protected getSPParams(aoParam: any): IParamSP[];
}
