import type { ICompilerService } from "../structures/ICompilerService"; /** * Renders the lint plugin's findings in a list view. Shown by `PlaygroundShell` * when the active tab is "lint". Empty state is the green checkmark. */ export declare function LintPane({ diagnostics, emptyHint, }: { diagnostics: ICompilerService.IDiagnostic[]; emptyHint?: string; }): import("react/jsx-runtime").JSX.Element;