import React from "react"; type Props = { title?: string; onSelect: (item: string, pack: string) => void; onBuyPress: (pack: any) => void; pack: { [key: string]: any; }; selected?: string; remain?: number; }; type ItemProps = { item: string; onSelect: (item: string, pack: string) => void; pack: { [key: string]: any; }; isEmpty: boolean; isSelected: boolean; }; export declare const GiftPackItem: React.FC; export declare const GiftPackBar: React.FC; export {}; //# sourceMappingURL=GiftPackBar.d.ts.map