import { FC } from 'react';
export interface NodeBasicPropertiesProps {
    nodeId: string;
    label: string;
    description: string;
    onLabelChange: (value: string) => void;
    onDescriptionChange: (value: string) => void;
    labelLabel?: string;
    descriptionLabel?: string;
    descriptionPlaceholder?: string;
    disabled?: boolean;
}
/**
 * NodeBasicProperties component for common node properties
 * Provides label and description fields with consistent styling
 */
export declare const NodeBasicProperties: FC<NodeBasicPropertiesProps>;
//# sourceMappingURL=NodeBasicProperties.d.ts.map