import React from 'react'; import { ILine } from '../Line/Line'; import { IPropsAny } from '../types'; export interface IMeta extends ILine { values?: any[]; separator?: any; ItemProps?: IPropsAny; SeparatorProps?: IPropsAny; } declare const Meta: React.FC; export default Meta;