export type LionField = import('../src/LionField.js').LionField;
export type FormControlHost = import('../types/FormControlMixinTypes').FormControlHost;
export type FormControl = FormControlHost & HTMLElement & {
    _parentFormGroup?: HTMLElement;
    checked?: boolean;
};
export type ShadowHTMLElement = HTMLElement & {
    shadowRoot: HTMLElement;
    assignedNodes: Function;
};
