import { Node } from "@pseuco/lang"; export declare class PseucoWarning { readonly astNode: Node; readonly domain: string; readonly message: string; readonly hint?: string | undefined; constructor(astNode: Node, domain: string, message: string, hint?: string | undefined); get description(): string; }