import type { File, JSXOpeningElement } from '@babel/types'; export declare class JsxElementIdentityMismatchError extends Error { constructor(); } export declare const getJsxComponentIdentity: ({ ast, jsxElement, }: { ast: File; jsxElement: JSXOpeningElement; }) => string | null; export declare const jsxComponentIdentitiesMatch: ({ expected, actual, }: { expected: string | null; actual: string | null; }) => boolean;