import React from 'react'; type DeleteComponentProps = { environmentId?: string; force?: boolean; }; export default function DeleteComponent({ environmentId, force, }: DeleteComponentProps): React.ReactNode; export {};