/** * Asserts that the given address system is valid. * * @param addressSystem - The address system to be validated. * @returns The validated address system. * @throws Error if the address system is not valid. */ import { AddressSystemType } from '../Address'; export declare function assertAddressSystemFromString(addressSystem: string): AddressSystemType;