import { Exception } from "@tsplus/stdlib/exceptions/Exception"; export declare const IndexOutOfBoundsTag = "IndexOutOfBounds"; export declare class IndexOutOfBounds extends Exception { readonly index: number; readonly min: number; readonly max: number; readonly _tag = "IndexOutOfBounds"; readonly message: string; constructor(index: number, min: number, max: number); } //# sourceMappingURL=IndexOutOfBounds.d.ts.map