type LabelWithLink = {
    name: string;
    link: string;
};
type LabelsWithLinksProps = {
    labels?: never;
    labelsWithLinks: LabelWithLink[];
    numLabels?: number;
    noWrap?: boolean;
};
type LabelsProps = {
    labels: string[];
    labelsWithLinks?: never;
    numLabels?: number;
    noWrap?: boolean;
};
export declare function LabelsCell(props: LabelsProps | LabelsWithLinksProps): import("react/jsx-runtime").JSX.Element;
export {};
