import type { DateLike, ModifyPartial } from "type_aliases"; export declare type ApiCssContactArgument = ModifyPartial; export declare class ApiCssContact { id: number; userId?: number; email: string; name: string; organizationId?: number; createdBy?: number; createdAt: number; constructor({ id, userId, email, name, organizationId, createdBy, createdAt }?: ApiCssContactArgument); } export default ApiCssContact;