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: 'default' | 'card' | 'media' | 'detail' | 'inline' | 'block'; } export default function SanityPreview(props: Props): React.JSX.Element; export {}; //# sourceMappingURL=SanityPreview.d.ts.map