export type Integration = { id: string; type: string; url: string | null; icon: string | null; text: string | null; size: string | null; accountId: string; createdAt: string; updatedAt: string; }; export type CreateIntegrationPayload = { type: string; url?: string; icon?: string; text?: string; size?: string; }; export type UpdateIntegrationPayload = { type?: string; url?: string | null; icon?: string | null; text?: string | null; size?: string | null; }; //# sourceMappingURL=types.d.ts.map