import React from 'react';
export declare type Props = {
    /** Application to render. */
    children: NonNullable<React.ReactNode>;
};
/**
 * Context based component that provides Apollo's client to all Query and Mutation components.
 * Must be rendered at the root of an application.
 */
export default function Provider({ children }: Props): JSX.Element;
//# sourceMappingURL=index.d.ts.map