declare const MEMBER_FIELD_KEY: { ID: string; FULL_NAME: string; FULL_NAME_2: string; EMAIL: string; TITLE: string; BIRTHDAY: string; PHONE: string; ADDRESS: string; ADDRESS_2: string; STATUS: string; ZIP_CODE: string; CITY: string; STATE: string; COUNTRY: string; CREATED_DATE: string; TIMEZONE: string; LOGO: string; }; declare const MEMBER_GET_FIELD_KEY: { ID: string; FULL_NAME: string; AVATAR_DAM: string; USERNAME: string; EMAIL: string; BIRTHDAY: string; PHONE: string; ADDRESS: string; ADDRESS_2: string; STATUS: string; ZIP_CODE: string; CITY: string; STATE: string; COUNTRY: string; TIMEZONE: string; ALLOW_CREATE_ITEM: string; ORGANIZATION: string; LOGO: string; }; declare const MEMBER_CREATE_FIELD_KEY: { USERNAME: string; EMAIL: string; PASSWORD: string; }; declare const MEMBER_CREATE_API_RESPONSE_FIELD_KEY: { USERNAME: string; EMAIL: string; PASSWORD: string; }; declare const MEMBER_UPDATE_ACTIVATION_CODE_FIELD_KEY: { ACTIVATION_CODE: string; }; declare const MEMBER_UPDATE_PASSWORD_FIELD_KEY: { ID: string; CURR_PASSWORD: string; NEW_PASSWORD: string; }; declare const MEMBER_RESET_PASSWORD_EMAIL_FIELD_KEY: { EMAIL: string; }; declare const MEMBER_RESET_PASSWORD_FIELD_KEY: { ACTIVATION_CODE: string; USERNAME: string; }; declare const MEMBER_RESET_PASSWORD_NEW_PASSWORD_FIELD_KEY: { ID: string; NEW_PASSWORD: string; ACTIVATION: string; }; export { MEMBER_CREATE_API_RESPONSE_FIELD_KEY, MEMBER_CREATE_FIELD_KEY, MEMBER_FIELD_KEY, MEMBER_GET_FIELD_KEY, MEMBER_RESET_PASSWORD_EMAIL_FIELD_KEY, MEMBER_RESET_PASSWORD_FIELD_KEY, MEMBER_RESET_PASSWORD_NEW_PASSWORD_FIELD_KEY, MEMBER_UPDATE_ACTIVATION_CODE_FIELD_KEY, MEMBER_UPDATE_PASSWORD_FIELD_KEY };