import { PhotonClient } from '@photonhealth/sdk'; import { Patient } from '@photonhealth/sdk/dist/types'; import { GraphQLFormattedError } from 'graphql'; export declare const PatientStore: { store: { patients: { data: Patient[]; errors: readonly GraphQLFormattedError[]; isLoading: boolean; finished: boolean; }; selectedPatient: { data?: Patient; errors: readonly GraphQLFormattedError[]; isLoading: boolean; }; }; actions: { getPatients: (client: PhotonClient, args?: { first?: number; name?: string; }) => Promise<(() => Promise<(() => Promise) | undefined>) | undefined>; getSelectedPatient: (client: PhotonClient, id: string) => Promise; clearSelectedPatient: () => Promise; reset: () => Promise; }; };