import { FC, HTMLAttributes } from 'react'; export interface Props extends HTMLAttributes { options: any[]; onChange: (selected: any) => void; value: any; } export declare const RemoveDialogContent: FC;