import * as ts from "@tsd/typescript"; export interface TsdErrorOptions { file?: ts.SourceFile | undefined; messageText: string | ts.DiagnosticMessageChain; start?: number | undefined; } export declare class TsdError extends Error { constructor(name: string, options: TsdErrorOptions); }