/** * Assert a condition. * * @param condition - The condition to verify. * @param message - The error message to throw. * * @throws If the condition isn't met. */ export declare function assert(condition: boolean, message: string): void;