/** * Workspace Page Component — Single entity management * * Thin wrapper around WorkspaceView + WorkspaceDrawer. * All state and handlers live in context.tsx. All UI strings are * passed as pre-translated props from the caller so this component * is translation-agnostic. * * Exports: * - `WorkspacePage` — root component that wraps with WorkspaceStateContextProvider */ import { FC } from "react"; import { USER_ROLE } from "../../type"; interface Props { actionsButtonEdit: string; tableDescription: string; tableTitle: string; userRole: USER_ROLE; } export declare const WorkspacePage: FC; export {};