import { type Compiler } from '@rspack/core'; export interface TsCheckerGuardPluginOption { /** * Whether to exit the process when issues is not empty * @default false */ autoExit?: boolean; } export declare class TsCheckerGuardPlugin { private options; constructor(option?: TsCheckerGuardPluginOption); apply(compiler: Compiler): void; }