import { type Address, type Contract, type ProviderRpcClient, type Subscriber } from 'everscale-inpage-provider';
import { SmartContractModel } from '../../core';
import { CONFIG_ABI } from '../../models/master-chain-config/constants';
import { type Forceable, type Silentable, type Syncable, type Watchable } from '../../types';
export interface ShardChainConfigCtorOptions {
    watchDebounceDelay?: number;
}
export interface ShardChainCreateOptions extends ShardChainConfigCtorOptions, Syncable, Watchable {
    watchCallback?: VoidFunction;
}
export interface ShardChainConfigData {
    tag1: string;
    gasPrice: string;
    gasLimit: string;
    tag2: string;
    specialGasLimit: string;
    gasCredit: string;
    blockGasLimit: string;
    freezeDueLimit: string;
    deleteDueLimit: string;
    flatGasLimit: string;
    flatGasPrice: string;
}
export declare class ShardChainConfig extends SmartContractModel<ShardChainConfigData> {
    protected readonly _connection: ProviderRpcClient;
    protected readonly options?: Readonly<ShardChainConfigCtorOptions> | undefined;
    protected readonly _contract: Contract<typeof CONFIG_ABI>;
    /**
     * @param {ProviderRpcClient} _connection Standalone RPC client that doesn't require connection to the TVM wallet provider
     * @param {Address | string} address ShardChainConfig root address
     * @param {Readonly<ShardChainConfigCtorOptions>} [options] (optional) ShardChainConfig Smart Contract Model options
     */
    constructor(_connection: ProviderRpcClient, address: Address | string, options?: Readonly<ShardChainConfigCtorOptions> | undefined);
    /**
     * @param {ProviderRpcClient} connection Standalone RPC client that doesn't require connection to the TVM wallet provider
     * @param {Address | string} address ShardChainConfig root address
     * @param {Readonly<ShardChainCreateOptions>} [options] (optional) ShardChainConfig Smart Contract Model options
     */
    static create(connection: ProviderRpcClient, address: Address | string, options?: Readonly<ShardChainCreateOptions>): Promise<ShardChainConfig>;
    sync(options?: Forceable & Silentable): Promise<void>;
    watch(callback?: VoidFunction): Promise<Subscriber>;
    unwatch(): Promise<void>;
    protected syncParams(): Promise<void>;
    get gasPrice(): ShardChainConfigData['gasPrice'];
    get gasLimit(): ShardChainConfigData['gasLimit'];
    get tag2(): ShardChainConfigData['tag2'];
    get specialGasLimit(): ShardChainConfigData['specialGasLimit'];
    get gasCredit(): ShardChainConfigData['gasCredit'];
    get blockGasLimit(): ShardChainConfigData['blockGasLimit'];
    get freezeDueLimit(): ShardChainConfigData['freezeDueLimit'];
    get deleteDueLimit(): ShardChainConfigData['deleteDueLimit'];
    get flatGasLimit(): ShardChainConfigData['flatGasLimit'];
    get flatGasPrice(): ShardChainConfigData['flatGasPrice'];
}
