export declare const tableName = "notification_push_token"; export interface NotificationPushToken { did: string; platform: 'ios' | 'android' | 'web'; token: string; appId: string; } export type PartialDB = { [tableName]: NotificationPushToken; }; //# sourceMappingURL=notification-push-token.d.ts.map