import { DocometBuffer } from './base/docomet-buffer.js'; import { DocometColor } from './system/docomet-color.js'; import { DocometCommander } from './cli/docomet-commander.js'; import { DocometCount } from './base/docomet-count.js'; import { DocometDir } from './system/docomet-dir.js'; import { DocometEncoding } from './base/docomet-encoding.js'; import { DocometError } from './base/docomet-error.js'; import { DocometFile } from './system/docomet-file.js'; import { DocometPath } from './system/docomet-path.js'; import { DocometProcess } from './system/docomet-process.js'; import { DocometStat } from './system/docomet-stat.js'; import { DocometStream } from './base/docomet-stream.js'; import { DocometString } from './base/docomet-string.js'; /** * Docomet * @see {@link DocometBuffer} * @see {@link DocometColor} * @see {@link DocometCommander} * @see {@link DocometCount} * @see {@link DocometDir} * @see {@link DocometEncoding} * @see {@link DocometError} * @see {@link DocometFile} * @see {@link DocometPath} * @see {@link DocometProcess} * @see {@link DocometStat} * @see {@link DocometStream} * @see {@link DocometString} */ export declare const docomet: { /** * Base */ base: { /** * `DocometBuffer` module */ buffer: typeof DocometBuffer; /** * `DocometCount` module */ count: typeof DocometCount; /** * `DocometEncoding` module */ encoding: typeof DocometEncoding; /** * `DocometError` module */ error: typeof DocometError; /** * `DocometStream` module */ stream: typeof DocometStream; /** * `DocometString` module */ string: typeof DocometString; }; /** * CLI */ cli: { /** * `DocometCommander` module */ commander: typeof DocometCommander; }; /** * System */ system: { /** * `DocometColor` module */ color: typeof DocometColor; /** * `DocometDir` module */ dir: typeof DocometDir; /** * `DocometFile` module */ file: typeof DocometFile; /** * `DocometPath` module */ path: typeof DocometPath; /** * `DocometProcess` module */ process: typeof DocometProcess; /** * `DocometStat` module */ stat: typeof DocometStat; }; }; export default docomet;