/** * This file was automatically generated by @cosmwasm/ts-codegen@0.30.1. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run the @cosmwasm/ts-codegen generate command to regenerate this file. */ import { UseQueryOptions } from "react-query"; import { Config } from "./FairBurn.types"; import { FairBurnQueryClient } from "./FairBurn.client"; export declare const fairBurnQueryKeys: { contract: readonly [{ readonly contract: "fairBurn"; }]; address: (contractAddress: string | undefined) => readonly [{ readonly address: string | undefined; readonly contract: "fairBurn"; }]; config: (contractAddress: string | undefined, args?: Record) => readonly [{ readonly method: "config"; readonly args: Record | undefined; readonly address: string | undefined; readonly contract: "fairBurn"; }]; }; export declare const fairBurnQueries: { config: ({ client, options }: FairBurnConfigQuery) => UseQueryOptions; }; export interface FairBurnReactQuery { client: FairBurnQueryClient | undefined; options?: UseQueryOptions; } export interface FairBurnConfigQuery extends FairBurnReactQuery { } export declare function useFairBurnConfigQuery({ client, options }: FairBurnConfigQuery): import("react-query").UseQueryResult;