@sanity/desk-tool
Version:
Tool for managing all sorts of content in a structured manner
9 lines • 327 B
TypeScript
import { SanityDocument } from '@sanity/types';
import React from 'react';
export interface DocTitleProps {
document: Partial<Omit<SanityDocument, '_type'>> & {
_type: SanityDocument['_type'];
};
}
export declare function DocTitle(props: DocTitleProps): React.JSX.Element;
//# sourceMappingURL=DocTitle.d.ts.map