import { BaseCommand } from '../../helpers/base-command'; export declare class PoolParams extends BaseCommand { static flags: { 'stake-pool-id': import("@oclif/core/lib/interfaces").OptionFlag; help: import("@oclif/core/lib/interfaces").BooleanFlag; mainnet: import("@oclif/core/lib/interfaces").BooleanFlag; testnet: import("@oclif/core/lib/interfaces").BooleanFlag; 'testnet-magic': import("@oclif/core/lib/interfaces").OptionFlag; json: import("@oclif/core/lib/interfaces").BooleanFlag; 'out-file': import("@oclif/core/lib/interfaces").OptionFlag; }; doWork: () => Promise<{ poolParams: { publicKey: string; cost: string | bigint | null; metadata: { hash: string | null; url: string | null; }; vrf: string; owners: string[]; pledge: string | bigint | null; rewardAccount: { network: string; credential: { 'key hash': string; }; }; margin: number; relays: ({ 'single host name': { port: number; dnsName: string; }; 'single host address'?: undefined; } | { 'single host address': { IPv6: string | null; port: number; IPv4: string | null; }; 'single host name'?: undefined; })[]; }; futurePoolParams: { publicKey: string; cost: string; metadata: { hash: string | null | undefined; url: string | null | undefined; }; vrf: string; owners: string[]; pledge: string | bigint | null; rewardAccount: { network: string; credential: { 'key hash': string; }; }; margin: number; relays: ({ 'single host name': { port: number; dnsName: string; }; 'single host address'?: undefined; } | { 'single host address': { IPv6: string | null; port: number; IPv4: string | null; }; 'single host name'?: undefined; })[]; } | null; retiring: number | null; }>; }