import { ReactNode } from 'react'; /** * TablePageLayout * Classification: custom (template) * * Standard list/table page: a header (title, description, primary actions), an * optional toolbar (search/filters) and a content region for the table. */ export interface TablePageLayoutProps { title: string; description?: string; /** Primary actions, right-aligned in the header. */ actions?: ReactNode; /** Toolbar row above the table (search, filters, view toggles). */ toolbar?: ReactNode; children: ReactNode; } export declare function TablePageLayout({ title, description, actions, toolbar, children, }: TablePageLayoutProps): import("react").JSX.Element;