export declare const substring: (
  input: string,
  start: number,
  stop: number,
  reverse: boolean
) => string | null;
