/**
* Returns true if the current frame is within an iframe.
*
* ```gjs
* import { inIframe } from 'ember-primitives/iframe';
*
*
* {{#if (inFrame)}}
* only show content in an iframe
* {{/if}}
*
* ```
*/
export declare const inIframe: () => boolean;
/**
* Returns true if the current frame is not within an iframe.
*
* ```gjs
* import { notInIframe } from 'ember-primitives/iframe';
*
*
* {{#if (notInIframe)}}
* only show content when not in an iframe
* This is also the default if your site/app
* does not use iframes
* {{/if}}
*
* ```
*/
export declare const notInIframe: () => boolean;
//# sourceMappingURL=iframe.d.ts.map