import { IndexListAreaBulkControlAction } from '../../../areas/IndexList'; import type { BaseResource } from '../../../pages/types'; import type { ApiSearchParams } from '../../../templates/IndexPage/types'; export type CommonDialogProps = { title: string; action: IndexListAreaBulkControlAction | undefined; resetAction: () => void; onExecute: () => Promise; }; export declare const BulkControl:

({ children, }: { children: React.ReactNode; }) => JSX.Element;