import { Address } from "@solana/kit"; import * as types from "../types"; export interface PythConfigurationFields { price: Address; } export interface PythConfigurationJSON { price: string; } export declare class PythConfiguration { readonly price: Address; constructor(fields: PythConfigurationFields); static layout(property?: string): import("buffer-layout").Layout; static fromDecoded(obj: any): types.PythConfiguration; static toEncodable(fields: PythConfigurationFields): { price: Address; }; toJSON(): PythConfigurationJSON; static fromJSON(obj: PythConfigurationJSON): PythConfiguration; toEncodable(): { price: Address; }; } //# sourceMappingURL=PythConfiguration.d.ts.map