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