import { ReactElement } from 'react';
interface Props {
    k: string;
    v: string;
}
export default function EntityTableStatusCell({ k, v }: Props): ReactElement;
export {};
