import * as React from "react"; import { Action, CacheConfiguration } from "../../models/CacheConfiguration"; type Props = { show: boolean; configuration: CacheConfiguration | null; actions: Action[]; configuredActionIds: number[]; onHide: (shouldUpdate: boolean) => void; suffixTitle?: string; }; export declare const UpsertCachedAction: ({ show, configuration, actions, configuredActionIds, onHide, suffixTitle, }: Props) => React.JSX.Element; export {};