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