import Component from '@glimmer/component'; import FreestyleCollection from '../freestyle-collection'; import Owner from '@ember/owner'; interface ComponentArgs { collection: FreestyleCollection; key: string; } interface Signature { Element: HTMLDivElement; Args: ComponentArgs; Blocks: { default: []; }; } export default class FreestyleVariant extends Component { constructor(owner: Owner, args: ComponentArgs); get inline(): boolean; get show(): boolean; } export {};