import type { Context } from '@semantic-api/api'; import { description, type User } from './description'; type SaveWithExtraProps = { what: Partial & { extra: Record; }; }; export declare const userExtraModel: () => Promise; export declare const saveWithExtra: (props: SaveWithExtraProps, context: Context) => Promise>; export {};