import { SchemaType } from '@sanity/types'; import React from 'react'; import type { SortOrdering } from '../types'; interface Props { type: SchemaType; value: any; ordering?: SortOrdering; children: (props: any) => React.ReactElement; layout?: string; } export default class PreviewSubscriber extends React.Component { renderChild: (isVisible: boolean) => React.JSX.Element; render(): React.JSX.Element; } export {}; //# sourceMappingURL=PreviewSubscriber.d.ts.map