import { ReactElement, ReactNode } from 'react';
import { PFColor } from '../components/pfcolors';
export interface TextCellProps {
    icon?: ReactNode;
    iconSize?: 'sm' | 'md' | 'lg';
    iconAlign?: 'left' | 'right';
    text?: string | null;
    to?: string;
    onClick?: () => void;
    color?: PFColor;
    iconColor?: PFColor;
    maxWidth?: number;
    disableLinks?: boolean;
    tooltip?: ReactElement;
    tooltipId?: number;
}
export declare function TextCell(props: Readonly<TextCellProps>): import("react/jsx-runtime").JSX.Element;
