import { CallOverrides } from 'ethers'; import { CollectionContract } from '../..'; import { ContractFunction } from './features'; declare const IsAspenFeaturesV1Partitions: { v1: "IAspenFeatures.sol:IAspenFeaturesV1"[]; }; type IsAspenFeaturesV1Partitions = typeof IsAspenFeaturesV1Partitions; declare const IsAspenFeaturesV1Interfaces: "IAspenFeatures.sol:IAspenFeaturesV1"[]; type IsAspenFeaturesV1Interfaces = (typeof IsAspenFeaturesV1Interfaces)[number]; export type IsAspenFeaturesV1CallArgs = [overrides?: CallOverrides]; export type IsAspenFeaturesV1Response = boolean; export declare class IsAspenFeaturesV1 extends ContractFunction { readonly functionName = "isAspenFeaturesV1"; constructor(base: CollectionContract); execute(...args: IsAspenFeaturesV1CallArgs): Promise; isAspenFeaturesV1(overrides?: CallOverrides): Promise; } export declare const isAspenFeaturesV1: (new (base: CollectionContract) => ((overrides?: CallOverrides | undefined) => Promise) & IsAspenFeaturesV1) & ((base: CollectionContract) => ((overrides?: CallOverrides | undefined) => Promise) & IsAspenFeaturesV1); export {};