import React from 'react'; import './index.less'; declare type IValue = (string | number)[] | string | number | undefined; export interface IOptions { name: string; value: string; type?: string; value_list?: string[]; group?: boolean; } export interface IProps { name?: string; filterContent?: React.ReactNode; multiple?: boolean; value?: IValue; storedOptions?: IOptions[]; options?: IOptions[]; description?: string; lineExtra?: React.ReactNode; onChange: (value: IValue) => void; } declare const PanelDimension: React.ForwardRefExoticComponent>; export default PanelDimension;