import React from 'react'; import { ActionDelete } from '../types/action.bar.type'; export interface DeleteActionProps { disabled?: boolean; tooltip: string; onClick: ActionDelete; children?: React.ReactNode; } export declare const DeleteAction: React.FC; //# sourceMappingURL=action.delete.d.ts.map