import { ForceError } from '..';
export declare class ForceErrorImpl implements ForceError {
    forceError: boolean;
    forceException: boolean;
    forceExceptionWaitCount: number;
    throwException(): number;
    checkForceError(message: string, cb?: (err: Error, anything: any, anything2?: any) => void): boolean;
    checkCallback(cb: (err: Error, anything: any, anything2?: any) => void): (err: Error, anything: any, anything2?: any) => void;
}
