declare module 'is-positive-integer' {
  function isPositiveInteger(value: unknown): value is number;
  export = isPositiveInteger;
}
