import * as oc from '../../index'; import type { Local } from '../domain/local'; import type { Logger } from '../logger'; declare const dev: ({ local, logger }: { logger: Logger; local: Local; }) => { (opts: { prefix: string; dirPath: string; port?: number; baseUrl: string; fallbackRegistryUrl: string; hotReloading?: boolean; postRequestPayloadSize?: string; components?: string[]; watch?: boolean; verbose?: boolean; production?: boolean; }): Promise>; (opts: { prefix: string; dirPath: string; port?: number; baseUrl: string; fallbackRegistryUrl: string; hotReloading?: boolean; postRequestPayloadSize?: string; components?: string[]; watch?: boolean; verbose?: boolean; production?: boolean; }, arguments__1: (error: unknown, value: oc.RegistryType) => void): void; }; export default dev;