import { AbstractEntity } from '../../abstractEntity'; export declare enum ContactCreateFields { COLUMN_ID = "id" } export declare type ContactCreateType = { [ContactCreateFields.COLUMN_ID]: number; }; export declare class ContactCreate extends AbstractEntity { #private; constructor(createContactResponse: ContactCreateType); get id(): number; toJSON(): ContactCreateType; }