lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 350 B
TypeScript
import * as React from 'react';
export interface FrequencyProps {
label: string;
description: string;
}
export interface FrequencyComponentProps extends FrequencyProps {
active: boolean;
setSelectedFrequencyIsActive: (label: string, active: boolean) => any;
}
export declare const FrequencyNode: React.ComponentClass<FrequencyProps>;