import { IframeRoutes, DependentDomainSpecs } from '../common/types'; /** * In this file we create the single listener for the iframe. * Once a message is posted to the iframe, this file receives * it, ensures the sender is on the list of dependent sites, * then routes the request to the proper data getter. */ interface SetIframeListenerProps { routes: IframeRoutes; dependentDomainSpecs: DependentDomainSpecs; } export declare const setIframeListener: ({ routes, dependentDomainSpecs }: SetIframeListenerProps) => void; export {};