import { FC } from 'react';
import { TunnelChildren } from '../TunnelState';
export type TunnelExitChildren = TunnelChildren;
export interface TunnelExitProps {
    id?: string;
    /** Select a dedicated tunnel provider by ID. */
    providerId?: string;
    children?: TunnelExitChildren;
}
export declare const TunnelExit: FC<TunnelExitProps>;
export default TunnelExit;
//# sourceMappingURL=TunnelExit.d.ts.map