import { PickerDbAPI } from '../../schema/types'; export declare function createAuthToken(identityField: string, identity: string, dbItemAPI: PickerDbAPI[string]): Promise<{ success: false; } | { success: true; itemId: string | number | bigint; token: string; }>;