/** * Throws an Error with a Handsontable-specific cause for easy identification. * * Use this helper instead of `throw new Error()` to ensure all Handsontable errors * can be recognized by checking `error.cause?.handsontable === true`. * * @param message The error message to display. * @throws {Error} Always throws an Error with `cause: { handsontable: true }`. */ export declare function throwWithCause(message: string): never;