export type FormRegistrarMixin = import('../../types/registration/FormRegistrarMixinTypes').FormRegistrarMixin;
export const FormRegistrarMixin: typeof import("../../types/registration/FormRegistrarMixinTypes").FormRegistrarImplementation;
export type FormControlHost = import('../../types/FormControlMixinTypes').FormControlHost;
export type FormRegistrarHost = import('../../types/registration/FormRegistrarMixinTypes').FormRegistrarHost;
export type ElementWithParentFormGroup = import('../../types/registration/FormRegistrarMixinTypes').ElementWithParentFormGroup;
export type FormRegisteringHost = import('../../types/registration/FormRegisteringMixinTypes').FormRegisteringHost;
export type FormControl = FormControlHost & HTMLElement & {
    _parentFormGroup?: HTMLElement;
    checked?: boolean;
};
