import { PhotonClient } from '@photonhealth/sdk'; import { Catalog } from '@photonhealth/sdk/dist/types'; import { GraphQLFormattedError } from 'graphql'; export declare const CatalogStore: { store: { catalogs: { data: Catalog[]; errors: readonly GraphQLFormattedError[]; isLoading: boolean; }; catalog: { data?: Catalog; errors: readonly GraphQLFormattedError[]; isLoading: boolean; }; }; actions: { getCatalogs: (client: PhotonClient) => Promise; getCatalog: (client: PhotonClient, id: string) => Promise; }; };