import { PopconfirmProps } from 'antd';
import { FC } from 'react';
import { POPCONFIRM, TComponentProps } from '../../Types';
interface IChildren extends Omit<PopconfirmProps, 'children'> {
    children: TComponentProps[];
}
export interface IPopconfirm {
    ctype: typeof POPCONFIRM;
    props: IChildren;
}
declare const Popconfirm: FC<IPopconfirm>;
export default Popconfirm;
