import React from 'react'; interface ToolsProps { children: React.ReactNode; } /** * The Tools component consists of the following elements: * the container, or root element, that sits as a direct child to the Layout grid definition; * the split panel, which exists only if there is a split panel in side position; * the tools, or drawer, that contains the hide tools form and the children passed through the API; * the show tools form that contains the triggers for both the drawer and the * split panel in large viewports; */ export default function Tools({ children }: ToolsProps): JSX.Element | null; export {};