import type { CommonDialogProps } from './index'; import type { BaseResource } from '../../../pages/types'; export declare const AllRecordsDialog: ({ title, action, resetAction, onExecute, isOpen, historyPushState, allPageSelectedCountText, }: CommonDialogProps & { isOpen: boolean; historyPushState?: ((url: string) => void) | undefined; allPageSelectedCountText: string; }) => JSX.Element | null;