import React from 'react';
import { LabelProps } from '@patternfly/react-core';
interface EditableLabelsProps {
    labels: string[];
    onLabelsChange: (labels: string[]) => Promise<void>;
    isArchive?: boolean;
    title?: string;
    contentWhenEmpty?: string;
    allExistingKeys: string[];
    labelProps?: LabelProps;
    overflowCount?: number;
    isCollapsible?: boolean;
    onEditingChange?: (editingState: boolean) => void;
}
export declare const EditableLabelsDescriptionListGroup: React.FC<EditableLabelsProps>;
export default EditableLabelsDescriptionListGroup;
//# sourceMappingURL=EditableLabelsDescriptionListGroup.d.ts.map