import * as i from '../interfaces'; export declare function enumStringToValue(enumRef: any, value: string): E; export declare class BuyItNowLink implements i.BuyItNowLinkInterface { accountGroupId: string; userId: string; packageId: string; linkId: string; created: Date; link: string; static fromProto(proto: any): BuyItNowLink; constructor(kwargs?: i.BuyItNowLinkInterface); toApiJson(): object; } export declare class GenerateBuyItNowLinkRequest implements i.GenerateBuyItNowLinkRequestInterface { accountGroupId: string; userId: string; packageId: string; static fromProto(proto: any): GenerateBuyItNowLinkRequest; constructor(kwargs?: i.GenerateBuyItNowLinkRequestInterface); toApiJson(): object; } export declare class GenerateBuyItNowLinkResponse implements i.GenerateBuyItNowLinkResponseInterface { link: BuyItNowLink; shortenedUrl: string; static fromProto(proto: any): GenerateBuyItNowLinkResponse; constructor(kwargs?: i.GenerateBuyItNowLinkResponseInterface); toApiJson(): object; } export declare class GetBuyItNowLinkByLinkIDRequest implements i.GetBuyItNowLinkByLinkIDRequestInterface { linkId: string; static fromProto(proto: any): GetBuyItNowLinkByLinkIDRequest; constructor(kwargs?: i.GetBuyItNowLinkByLinkIDRequestInterface); toApiJson(): object; } export declare class GetBuyItNowLinkByLinkIDResponse implements i.GetBuyItNowLinkByLinkIDResponseInterface { link: BuyItNowLink; static fromProto(proto: any): GetBuyItNowLinkByLinkIDResponse; constructor(kwargs?: i.GetBuyItNowLinkByLinkIDResponseInterface); toApiJson(): object; }