export * from './cartAccount';
export * from './cartDate';
export * from './cartDiscount';
export * from './cartNote';
export * from './cartProduct';
export * from './cartRelationForms';
export * from './cartResource';
/**
 * 生成一个唯一的 ID
 */
export declare const getUniqueId: (prefix?: string, maxLength?: number) => string;
/**
 * 创建购物车原始数据
 */
export declare const createCartItemOrigin: () => {
    id: number;
    number: number;
    registration_type: string;
    relation_products: never[];
    is_all: boolean;
    product: null;
    sub_type: null;
    duration: null;
    like_status: string;
    resources: null;
    schedule_id: number;
    start_date: null;
    start_time: null;
    select_date: null;
    end_time: null;
    end_date: null;
    metadata: {};
    holder: null;
};
