import * as React from 'react';
export interface Props {
    label?: React.ReactNode;
    value: string;
    active?: boolean;
}
export declare const Parameter: React.FC<Props>;
