import type { Wrapper } from './types/utility';
/**
 * @since 1.0.0
 * @param maybeWrapper Options to pass into sern.
 * Function to start the handler up
 * @example
 * ```ts title="src/index.ts"
 * Sern.init({
 *     commands: 'dist/commands',
 *     events: 'dist/events',
 * })
 * ```
 */
export declare function init(maybeWrapper?: Wrapper): void;
