import type { CommonDialogProps } from './index'; import type { UseBulkControlReturn } from './useBulkControl'; import type { BaseResource } from '../../../pages/types'; export declare const Confirm: ({ title, action, resetAction, onExecute, isOpen, dialogCheckedIndexes, isAllPageSelected, allPageSelectedCountText, }: CommonDialogProps & { isOpen: boolean; isAllPageSelected: boolean; allPageSelectedCountText: string; } & Pick, "dialogCheckedIndexes">) => JSX.Element | null;