declare const bag: { get: () => any; store: (value: any) => void; inputs: { get: () => string[]; store: (value: string[]) => void; }; pick: { get: () => number; store: (value: number) => void; }; }; export { bag }; export default bag;