import { Customer } from "./../../../.."; declare const _default: (app: any) => any; export default _default; export declare const defaultRelations: string[]; /** * @schema StoreAuthRes * type: object * x-expanded-relations: * field: customer * relations: * - orders * - orders.items * - shipping_addresses * required: * - customer * properties: * customer: * description: "Customer's details." * $ref: "#/components/schemas/Customer" */ export type StoreAuthRes = { customer: Customer; }; /** * @schema StoreGetAuthEmailRes * type: object * required: * - exists * properties: * exists: * description: Whether email exists or not. * type: boolean */ export type StoreGetAuthEmailRes = { exists: boolean; }; export * from "./create-session"; export * from "./delete-session"; export * from "./exists"; export * from "./get-session";