import React from "react"; import { CacheConfiguration } from "../../models/CacheConfiguration"; type Props = { show: boolean; configuration: CacheConfiguration | null; onHide: (shouldUpdate: boolean) => void; suffixTitle?: string; }; export declare const DeleteCachedAction: ({ show, configuration, onHide, suffixTitle, }: Props) => React.JSX.Element; export {};