import { GatewayStatus, InternalGatewayStatus, RootState } from '../types'; /** Map InternalGatewayStatuses that also contain non public API ExtendedGatewayStatuses to GatewayStatuses */ export declare const mapStatus: (internalStatus: InternalGatewayStatus) => GatewayStatus; /** Return a display value for the given InternalGatewayStatus which includes both ExtendedGatewayStatuses and GatewayStatuses */ export declare const statusDisplayValue: (internalStatus: InternalGatewayStatus) => string; export declare const autoShowIframe: (state: RootState) => boolean;