import { SanitizedAdminUser } from '@strapi/admin/strapi-admin'; import { Data } from '@strapi/types'; interface StageColumnProps { documentId?: string; id?: Data.ID; strapi_stage?: { color?: string; name: string; }; } declare const StageColumn: (props: StageColumnProps) => import("react/jsx-runtime").JSX.Element; interface AssigneeColumnProps { documentId?: string; id?: Data.ID; strapi_assignee?: Pick | null; } declare const AssigneeColumn: (props: AssigneeColumnProps) => import("react/jsx-runtime").JSX.Element; export { StageColumn, AssigneeColumn }; export type { StageColumnProps, AssigneeColumnProps };