import type { string_executable_path } from '../types/string_filename';
/**
 * Paths to the external programs executables
 */
export type Executables = {
    /**
     * Path to the `pandoc` executable
     *
     * @example 'C:/Users/me/AppData/Local/Pandoc/pandoc.exe'
     */
    pandocPath?: string_executable_path;
    /**
     * Path to the LibreOffice executable
     *
     * @example 'C:/Program Files/LibreOffice/program/swriter.exe'
     */
    libreOfficePath?: string_executable_path;
};
/**
 * <- TODO: Add !!! `browserPath` to `Executables`
 */
