import React from 'react'; /** * Supplies a custom StateAdapt configuration to StateAdapt's React hooks. * * The context already contains {@link defaultStateAdapt}, so applications only * need to render a provider when they want to customize the configuration. * Create that configuration with {@link createStateAdapt} and provide the * same instance you import `adapt` and `watch` from. */ export declare const AdaptContext: React.Context<{ adapt: any; watch: any; }>;