import Component from '@glimmer/component'; import { type CSSVariableDefaults } from 'ember-freestyle'; interface Signature { Args: { name?: string; description?: string; defaultValue?: CSSVariableDefaults; type?: string; hideControls?: boolean; value?: string; options?: string[]; onInput: (val: string | null | undefined) => void; }; } export default class FreestyleUsageBasicCssVariableComponent extends Component { get shouldRenderDefaultValue(): boolean; get shouldRenderDefaultComputed(): boolean; } export {};