import type { TOC } from "@ember/component/template-only"; export interface Signature { Blocks: { /** * Content to render in to the `
` element */ default: []; }; } /** * Utility component to place elements in the document `` * * When this component is unrendered, its contents will be removed as well. * * @example * ```js * import { InHead } from 'ember-primitives/head'; * * * {{#if @useBootstrap}} * * * {{/if}} * * ``` */ export declare const InHead: TOC