import { type Context } from '@semantic-api/api'; import { description, type File } from './description'; type Props = { what: { content: string; } & Pick; }; declare const insert: (props: Props, context: Context) => Promise; export default insert;