/** * argTypesで指定したオブジェクトをargsの他のオブジェクトにも適用する * * args: { foo.0.bar: value, foo.1.bar: value } と argTypes: { 'foo.0.bar': { options: ['a', 'b', 'c'] } } がある場合、 * { 'foo.0.bar': { options: ['a', 'b', 'c'] }, 'foo.1.bar': { options: ['a', 'b', 'c'] } } が返り値となる */ export declare const applyArrayArgTypes: (args: { [key: string]: any; }, argTypes: { [key: string]: any; }) => any;