import type { GlobalProps, GlobalState } from '../../shared/model.js'; import type { DBTableRowCell, DBTableRowProps } from '../table-row/model.js'; export type DBTableHeadDefaultProps = { rows?: DBTableRowProps[]; }; export type DBTableHeadProps = DBTableHeadDefaultProps & GlobalProps; export type DBTableHeadDefaultState = { getCells: (cells?: DBTableRowCell[]) => DBTableRowCell[] | undefined; }; export type DBTableHeadState = DBTableHeadDefaultState & GlobalState;