import type { User } from '../users/types'; export type Sticker = { id: string; type: string; originFileChecksum: string | null; originFilehash: string | null; originMessageId: string | null; userId: string; accountId: string; createdAt: string; updatedAt: string; deletedAt: string | null; user?: User; }; export type StickerRelationships = 'user'; export type CreateStickerPayload = { type: string; originMessageId?: string; originFileChecksum?: string; originFilehash?: string; }; export type UpdateStickerPayload = { type?: string; }; //# sourceMappingURL=types.d.ts.map