/// import { ViewType } from "@easyv/dtable-types/output/View"; interface Props { className?: string; onChange: (id: string) => void; tableId?: string; viewType?: ViewType[]; } declare function ActionOverlay({ className, tableId, viewType, onChange }: Props): JSX.Element; export default ActionOverlay;