import { ArtistAccountArgs } from "../../generated"; import { NETWORK } from "../../types"; interface CacheArtists extends ArtistAccountArgs { kind: string; address: string; timestamp: Date; } /** * Fetches all artists in the BrightSwitch mongo db. * @returns - All artists in the BrightSwitch mongo db. */ export declare const fetchAllArtists: (network?: NETWORK) => Promise; /** * * @param address - The address of the artist to fetch. * @returns artists or null. */ export declare const fetchArtistByAddress: (address: string, network?: NETWORK) => Promise; /** * * @param filter - The filter to apply to the query. * @returns - The artists that match the filter. */ export declare const fetchArtistByFilter: (filter: Partial, network?: NETWORK) => Promise; export {}; //# sourceMappingURL=artist.d.ts.map