import { SourceLocation, CompilerError } from '@vue/compiler-dom'; export interface SSRCompilerError extends CompilerError { code: SSRErrorCodes; } export declare function createSSRCompilerError(code: SSRErrorCodes, loc?: SourceLocation): SSRCompilerError; export declare const enum SSRErrorCodes { X_SSR_CUSTOM_DIRECTIVE_NO_TRANSFORM = 60, X_SSR_UNSAFE_ATTR_NAME = 61, X_SSR_NO_TELEPORT_TARGET = 62, X_SSR_INVALID_AST_NODE = 63 } export declare const SSRErrorMessages: { [code: number]: string; };