import { Dictionary } from 'lodash'; import { Dispatch, SetStateAction } from 'react'; import { Release, ReleaseLog } from 'repo'; export declare const TYPES: { html: string; pdf: string; epub: string; word: string; json: string; }; export declare const useLogs: (release: Release) => [Dictionary, Dispatch>>]; export declare const useTypes: (release: any, logs: Dictionary) => [string, string][];