type PillStatusName = 'On-air' | 'Preview' | 'Analyzing' | 'Inactive';
type ButtonColor = 'gray 1' | 'green' | 'orange' | 'red';
type ButtonFill = 'filling' | 'ghost' | 'rimless';
type ButtonSize = 'L' | 'M' | 'S' | 'XS';
export interface TableCellText {
    kind: 'text';
}
export interface TableCellPill {
    kind: 'pill';
    /** Map a raw cell value → PillStatus props. Unmapped values render the raw value as the pill label. */
    map?: Record<string, {
        status?: PillStatusName;
        active?: boolean;
        label?: string;
    }>;
}
export interface TableCellButtonSpec {
    label?: string;
    /** data-cell-action value the app's delegated click listener reads. */
    actionKey?: string;
    color?: ButtonColor;
    fill?: ButtonFill;
    size?: ButtonSize;
    /** Icon-registry name rendered before the label (optional). */
    iconName?: string;
}
export interface TableCellButton extends TableCellButtonSpec {
    kind: 'button';
}
export interface TableCellActions {
    kind: 'actions';
    items: (TableCellButtonSpec & {
        actionKey: string;
    })[];
}
export interface TableCellLink {
    kind: 'link';
    /** Static href; when omitted, read from row[hrefKey], else fall back to the raw value. */
    href?: string;
    hrefKey?: string;
    label?: string;
    actionKey?: string;
}
export interface TableCellIcon {
    kind: 'icon';
    /** Static icon name; or use `map` to pick a name from the raw value. */
    name?: string;
    map?: Record<string, string>;
}
export type TableCellDescriptor = TableCellText | TableCellPill | TableCellButton | TableCellActions | TableCellLink | TableCellIcon;
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
    descriptor: TableCellDescriptor;
    /** row[col.key] — the raw value for this cell. */
    value: unknown;
    row: Record<string, unknown>;
    /** The row's rowKey value (if Table was given rowKey), surfaced for app delegation. */
    rowKeyValue?: string | number;
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
    descriptor: TableCellDescriptor;
    /** row[col.key] — the raw value for this cell. */
    value: unknown;
    row: Record<string, unknown>;
    /** The row's rowKey value (if Table was given rowKey), surfaced for app delegation. */
    rowKeyValue?: string | number;
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export default _default;
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToRuntimeProps<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: import('vue').PropType<T[K]>;
        required: true;
    };
};
