import { IdentityFieldType } from "@protontech/autofill/types"; import type { FormClassification } from "./fathom"; type IdentityFieldMatchParams = { form: FormClassification; searchField: boolean; type: string | null; visible: boolean; }; export declare const getCachedIdentitySubType: (el: HTMLElement) => IdentityFieldType | undefined; export declare const getIdentityHaystack: (input: HTMLInputElement) => string; export declare const getIdentityFieldType: (input: HTMLInputElement) => IdentityFieldType | undefined; export declare const matchIdentityField: (input: HTMLInputElement, { visible }: IdentityFieldMatchParams) => boolean; export {};