//#region src/next.d.ts interface DevInspectorProps { host?: string; port?: string | number; /** * Full public reachable base URL including protocol. * If provided, it overrides host/port and will be used for loading inspector assets and API calls. * @example "https://your-domain.com" */ baseUrl?: string; /** * Disable Chrome DevTools integration * @default true */ disableChrome?: boolean; } declare function DevInspector({ host, port, baseUrl, disableChrome }: DevInspectorProps): null; //#endregion export { DevInspector, DevInspector as default };