import { Environment } from '../../../../utils/environment/Environment';
declare const invest: (environment: Environment, { hubAddress, investmentAmount, requestedShares }: {
    hubAddress: any;
    investmentAmount: any;
    requestedShares: any;
}) => Promise<{
    shareQuantity: import("@melonproject/token-math/quantity/QuantityInterface").default;
}>;
export { invest };
