import Component from '@glimmer/component'; import type { ComponentLike } from '@glint/template'; interface DocfyDemoSnippetSignature { Args: { name: string; tab?: ComponentLike<{ Args: { label: string; }; Blocks: { default: []; }; }>; }; Element: HTMLDivElement; Blocks: { default: []; }; } export default class DocfyDemoSnippet extends Component { get label(): string; } export {}; //# sourceMappingURL=snippet.d.ts.map