import type { Template } from './template'; import type { LightningElementConstructor } from './base-lightning-element'; import type { Stylesheet } from '@lwc/shared'; /** * Validate a template, stylesheet, or component to make sure that its compiled version matches * the version used by the LWC engine at runtime. Note that this only works in dev mode because * it relies on code comments, which are stripped in production due to minification. * @param func * @param type */ export declare function checkVersionMismatch(func: Template, type: 'template'): void; export declare function checkVersionMismatch(func: Stylesheet, type: 'stylesheet'): void; export declare function checkVersionMismatch(func: LightningElementConstructor, type: 'component'): void; //# sourceMappingURL=check-version-mismatch.d.ts.map