import { StateJson, Component } from '@easytwin/runtime'; import { UISchema } from '../../type'; import * as React from 'react'; export interface StateTabsPanelProps { value: StateJson[]; comp: Component; formSchema: UISchema; allowEmpty?: boolean; /** for exception */ title?: string; isEmptyStateFill?: boolean; alwaysUsable?: boolean; } export declare const StateTabsPanel: React.FC>;