/** * Throws an error if the condition is false * @param condition * @param message * @param ErrorConstruct */ export declare const assert: (condition: boolean | number | string | null | undefined, message: string, ErrorConstruct?: ErrorConstructor) => void;