import { BurnerConfigArgs } from "../../generated"; import { NETWORK } from "../../types"; interface CacheBurner extends BurnerConfigArgs { kind: string; address: string; timestamp: Date; } /** * Fetches all burners in the BrightSwitch mongo db. * @returns - All burners in the BrightSwitch mongo db. */ export declare const fetchAllBurners: (network?: NETWORK) => Promise; /** * Fetches all burners in the BrightSwitch mongo db. * @param address - The address of the burner to fetch. * @returns - The burner that matches the address. */ export declare const fetchBurnerByAddress: (address: string, network?: NETWORK) => Promise; /** * Fetches all burners in the BrightSwitch mongo db. * @param filters - The filters to apply to the query. * @returns - The burners that match the filters. */ export declare const fetchBurnerByFilter: (filters: Partial, network?: NETWORK) => Promise; export {}; //# sourceMappingURL=burner.d.ts.map