export interface AutofillElement extends HTMLElement {
    isAutofilled?: boolean;
}
export type AutofillScope = HTMLElement | Document;
export declare const useAutofillDetection: (scope: AutofillScope | null) => {
    isAutofilled: boolean;
    autofillRef: import('react').MutableRefObject<HTMLElement | null>;
};
