///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
import type { ObjectSchema } from '@becomes/purple-cheetah/types';
import { BCMSUserPersonal } from './personal';
import { BCMSUserAddress } from './address';
import { BCMSUserPolicy } from './policy';
import { Schema } from 'mongoose';
export interface BCMSUserCustomPool {
personal: BCMSUserPersonal;
address: BCMSUserAddress;
policy: BCMSUserPolicy;
}
export declare const BCMSUserCustomPoolFSDBSchema: ObjectSchema;
export declare const BCMSUserCustomPoolMongoDBSchema: Schema, {}, {}, {}, {}, "type", {
personal: {
firstName: string;
lastName: string;
avatarUri?: string | undefined;
};
address: {
country?: string | undefined;
city?: string | undefined;
state?: string | undefined;
zip?: string | undefined;
street?: any;
};
policy: any;
}>;