/**
 * Similar to asset but throws on runtime if `condition` isn't met.
 * Possibility to add a `message` and some `data` to trace.
 * @throws {EnsureError}
 */
export declare const ensure: (condition: boolean, message: string, data?: any) => void;
