import React from 'react'; import { StateInType } from './translationStates'; import { components } from '../../client/apiSchema.generated'; type State = components['schemas']['TranslationViewModel']['state']; type Props = { state: State | undefined; onStateChange?: (s: StateInType) => void; className?: string; disabled?: boolean; language: string | undefined; }; export declare const StateTransitionButtons: React.FC; export {};