import * as React from 'react';
import { Container } from 'unstated';
declare type SubscribeProps = {
    loading: React.ReactNode;
    to: Container<any>[];
    children(...instances: Container<any>[]): React.ReactNode;
};
export default function SubscribeGate(props: SubscribeProps): any;
export {};
