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