import { FC } from '@dineug/r-html'; export type TablePropertiesProps = { isDarkMode: boolean; tableId: string; tableIds: string[]; onChange: (tableId: string) => void; }; declare const TableProperties: FC; export default TableProperties;