import { ApiSearchParams } from '../../templates/IndexPage/types'; import { IndexListAreaProps } from './types'; import type { BaseResource } from '../../pages/types'; /** * 一覧画面のリスト領域を表示するコンポーネントです。 * * このコンポーネントは以下の機能を提供します: * - 複数の表示形式(テーブル、ボーダー付きリスト、拡張テーブル)に対応 * - 一括操作機能 * - ページネーション機能 * - データ読み込み中のローディング表示 */ export declare const IndexListArea:
(props: IndexListAreaProps
) => JSX.Element; export declare const IndexListAreaInner:
({ contentLevel, }: IndexListAreaProps
) => JSX.Element;