import type { LitElement } from 'lit'; import type { Constructor } from '../constructor.js'; import { type FormAssociatedCheckboxElementInterface, type FormAssociatedElementInterface } from './types.js'; /** * Mixes the passed in class and turns it into a form associated custom element. */ export declare function FormAssociatedMixin>(base: T): Constructor & T; /** * Mixes the passed in class and turns it into a form associated custom element. */ export declare function FormAssociatedCheckboxMixin>(base: T): Constructor & T;