interface IPatterns { include?: (RegExp | string)[]; exclude?: (RegExp | string)[]; } declare const autoBind: (self: T, inclExcl?: IPatterns, thisValue?: T | undefined) => T; declare const autobind: (self: T, inclExcl?: IPatterns, thisValue?: T | undefined) => T; export { autobind, autoBind }; export default autobind;