import { PhotonClientStore } from '@photonhealth/components'; import type { Address } from './PrescribeWorkflow'; interface PatientCardStoreProp { patient?: { value?: { id: string; address: any; preferredPharmacies?: any[]; }; error: boolean; }; address?: { value?: any; }; } export declare const PatientCard: (props: { store: PatientCardStoreProp; actions: Record any>; patientId?: string; client?: PhotonClientStore; enableOrder?: boolean; address?: Address; weight?: number; weightUnit?: string; enableMedHistory?: boolean; enableMedHistoryLinks?: boolean; enableMedHistoryRefillButton?: boolean; hidePatientCard?: boolean; optionalPatientAddress?: boolean; }) => import("solid-js").JSX.Element; export {};