import { LitElement } from 'lit'; import { DescriptionPlacement, LabelPlacement } from '../../common/types'; type Constructor> = { new (...args: any[]): T; prototype: T; }; export interface LabelPositionedElementInterface { labelPlacement: LabelPlacement; descriptionPlacement: DescriptionPlacement; } export declare function LabelPositionedMixin>(constructor: T): T & Constructor; export {};