import { IframeStrategy } from './IframeStrategy'; import { WindowStrategy } from './WindowStrategy'; export { IframeStrategy, WindowStrategy }; export declare type BehaviorStrategies = ({ readonly name: 'iframe'; readonly behavior: typeof IframeStrategy; } | { readonly name: 'detached'; readonly behavior: typeof WindowStrategy; }); export declare const defaultBehaviorStrategies: BehaviorStrategies[];