import React from 'react'; import { CoinflowIFrameProps, IFrameMessageHandlers } from './common'; export type SendAndReceiveMessage = (message: string, isResponseValid: (response: string) => boolean) => Promise; export type CoinflowIFrameExposedFunctions = { sendAndReceiveMessage: SendAndReceiveMessage; listenForMessage: (isResponseValid: (response: string) => boolean) => Promise; }; export declare function useRandomHandleHeightChangeId(): string; export declare const CoinflowIFrame: React.ForwardRefExoticComponent>;