import type * as OpenFin from '../OpenFin'; /** * @internal * Create a channel relay for a given channel exposition, allowing a single provider to route * actions to the designated clients. * * Designed to be used in conjunction with @expose * * @param channelProvider The channel provider to relay the actions on. * @param config Determines which actions to relay. Please ensure action prefix matches the exposed api. */ export declare const relayChannelClientApi: (channelProvider: OpenFin.ChannelProvider, relayId: string) => Promise; export declare const createRelayedDispatch: (client: OpenFin.ChannelClient, target: OpenFin.Identity, relayId: string, relayErrorMsg?: string) => OpenFin.ChannelClient['dispatch'];