import Component from '@glimmer/component'; import type EmberFreestyleService from 'ember-freestyle/services/ember-freestyle'; import { DynamicProperties } from '../freestyle-dynamic'; interface Signature { Element: HTMLDivElement; Args: { isDynamic?: boolean; inline?: boolean; slug?: string; source?: string; title?: string; dynamicProperties?: DynamicProperties; }; Blocks: { default: []; }; } export default class FreestyleUsage extends Component { emberFreestyle: EmberFreestyleService; showLabels: boolean; showCode: boolean; get show(): boolean; defaultTheme: string | undefined; computedTheme: string; hasLabels: boolean; get hasCode(): boolean; dynamicProperties: Record; ensureTheme(): void; setFocus(): void; } export {};