import { Principal } from '@icp-sdk/core/principal'; /** * Retrieves the Satellite's Principal ID. * * This function is a JavaScript binding for the Rust function * [`ic_cdk::api::canister_self()`](https://docs.rs/ic-cdk/latest/ic_cdk/api/fn.canister_self.html), which returns * the Principal of the executing canister. * * @returns {Principal} The Principal ID of the Satellite. */ export declare const canisterSelf: () => Principal; /** * @deprecated Use {@link canisterSelf} instead. */ export declare const id: () => Principal; /** * Retrieves the Satellite's Principal ID. * * @returns {Principal} The Principal ID of the Satellite. */ export declare const satelliteSelf: () => Principal;