import type { DateLike, ModifyPartial } from "type_aliases"; import type { ApiIntegrationCredentialsType } from "../enums"; export declare type ApiIntegrationCredentialsArgument = ModifyPartial; export declare class ApiIntegrationCredentials { constructor({ id, username, password, createdAt, modifiedAt, credentialsType, firebaseOrganizationId, firebaseProjectId, authorId, encryptedCredentials }: ApiIntegrationCredentialsArgument); id?: number; username?: string; password?: string; authorId?: number; createdAt: number; modifiedAt?: number; credentialsType: ApiIntegrationCredentialsType; firebaseOrganizationId?: string; firebaseProjectId?: string; encryptedCredentials?: string; }