lml-main
Version:
This is now a mono repository published into many standalone packages.
10 lines (9 loc) • 344 B
TypeScript
import * as React from 'react';
export interface ConsolidationsProps {
}
export interface ConsolidationsComponentProps extends ConsolidationsProps {
fetchConsolidations: (labels: string[], args?: any) => any;
frequencies: any[];
consolidations: any;
}
export declare const Consolidations: React.ComponentClass<ConsolidationsProps>;