import { MutableRefObject } from 'react'; import { Moment } from 'moment'; declare function getFormattedValue(date: Moment | null | undefined, format: string): string; declare const useOnClickOutside: (ref: MutableRefObject, handler: () => void) => void; export { useOnClickOutside, getFormattedValue, };