import { FC } from "react"; import { Permissions } from "../details/Details"; export declare const Title: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit, HTMLHeadingElement>, never>>; type ListProps = { permissions: Permissions; docsPath?: string; useDeleteIcon?: boolean; onGroupClick: (id: string) => void; notification?: { visible?: boolean; title: string; description: React.ReactNode; action?: { label: string; onClick: () => void; }; }; }; declare const List: FC; export default List;