import type { SfcValidationResult, ValidateVueSfcInput } from "./types.js"; export type { ComponentDiagnostic, ComponentDiagnosticCode, ComponentDiagnosticSeverity, SfcValidationResult, SfcValidationSummary, ValidateVueSfcInput, } from "./types.js"; /** * Validates component-library imports and Vue template API usage against one * immutable, versioned component manifest. It deliberately does not infer APIs * from documentation or model knowledge. */ export declare function validateVueSfc(input: ValidateVueSfcInput): SfcValidationResult; /** Concise alias for integrations that already know the input is a Vue SFC. */ export declare const validateSfc: typeof validateVueSfc; //# sourceMappingURL=index.d.ts.map