export function remove({ t, onDelete }: {
    t: any;
    onDelete: any;
}): {
    name: string;
    icon: typeof Trash;
    label: any;
    Component: import("react").ForwardRefExoticComponent<import("react").RefAttributes<any>>;
    action: () => void;
};
import { Trash } from '@linagora/twake-icons';
