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