/** * Forcefully throws a failed assertion. * * @example Usage * ```ts ignore * import { fail } from "@std/assert"; * * fail("Deliberately failed!"); // Throws * ``` * * @param msg Optional message to include in the error. * @returns Never returns, always throws. */ export declare function fail(msg?: string): never; //# sourceMappingURL=fail.d.ts.map