import { NetworkModal } from "./network/components/NetworkModal"; /** * Pre-configured network monitoring tool for FloatingDevTools. * Includes: * - Live network request monitoring * - Request/response inspection * - Filter by status, method, URL * - Timing information */ export declare const networkToolPreset: { id: string; name: string; description: string; slot: "both"; icon: ({ size }: { size: number; }) => import("react").JSX.Element; component: typeof NetworkModal; props: { enableSharedModalDimensions: boolean; }; }; /** * Create a custom network monitoring tool configuration. * Use this if you want to override default settings. * * @example * ```tsx * import { createNetworkTool } from '@buoy-gg/network'; * * const myNetworkTool = createNetworkTool({ * name: "REQUESTS", * iconColor: "#9945FF", // Purple color * enableSharedModalDimensions: true, * }); * ``` */ export declare const createNetworkTool: (options?: ({ /** Enable shared modal dimensions */ enableSharedModalDimensions?: boolean; } & import("@buoy-gg/shared-ui").ToolPresetOverrides) | undefined) => { id: string; name: string; description: string; slot: "both"; icon: ({ size }: { size: number; }) => import("react").JSX.Element; component: typeof NetworkModal; props: { enableSharedModalDimensions: boolean; }; }; //# sourceMappingURL=preset.d.ts.map