import { type Address, type FullContractState, type ProviderRpcClient } from 'everscale-inpage-provider';
import { type Forceable } from '../types';
interface Options extends Forceable {
    ttl?: number;
}
export declare function getFullContractState(connection: ProviderRpcClient, address: Address | string, options?: Options): Promise<FullContractState | undefined>;
export {};
