/** * Asserts an invariant in a typesafe way * @param {boolean} condition - The condition to assert * @param {string} message - The message to display if the condition is false * @throws {Error} Throws an error if the condition is false */ export function invariant(condition: boolean, message: string): void; /** * Error thrown if an invariant is violated */ export class InvariantError extends Error { /** * @param {string} message - The message to display */ constructor(message: string); } //# sourceMappingURL=invariant.d.ts.map