import { IShareDocument } from "./sharesTypes"; export declare function setLastUpdated(this: IShareDocument): Promise; /** * @param this * @param numberOfShares * @returns whether the operation was successful */ export declare function sellShares(this: IShareDocument, { numberOfShares }: { numberOfShares: number; }): Promise; /** * @param this * @param numberOfShares * @returns the new number of shares */ export declare function addShares(this: IShareDocument, { numberOfShares }: { numberOfShares: number; }): Promise; //# sourceMappingURL=sharesMethods.d.ts.map