import React from 'react'; export interface IZoneStore { currentZoneName?: string; getZoneComponent(zoneName: string): React.JSX.Element; DynamicZone(prop: { html: string; }): React.JSX.Element; } export declare const ZoneStoreContext: React.Context; export declare const useZoneStore: () => IZoneStore;