import React from 'react'; import type { IExtendedLanguageObject } from '../../../types'; declare type Props = { status: 'draft' | 'published' | 'missing'; language: IExtendedLanguageObject; }; export declare const LanguageSelectListItem: React.FC; export {};