import type { SatelliteParameters } from '@junobuild/ic-client/actor'; import type { BuildType } from '../schemas/build'; /** * Retrieves the version of the satellite. * @param {Object} params - The parameters for retrieving the version. * @param {SatelliteParameters} params.satellite - The satellite parameters. * @returns {Promise} A promise that resolves to the version of the satellite. */ export declare const satelliteVersion: ({ satellite: { satelliteId, ...rest } }: { satellite: SatelliteParameters; }) => Promise; /** * Retrieves the build type of the satellite. * @param {Object} params - The parameters for retrieving the build type. * @param {SatelliteParameters} params.satellite - The satellite parameters. * @returns {Promise} A promise that resolves to the build type of the satellite or undefined if not found. */ export declare const satelliteBuildType: ({ satellite: { satelliteId, ...rest } }: { satellite: SatelliteParameters; }) => Promise;