/**
 * Copyright IBM Corp. 2021, 2025
 * SPDX-License-Identifier: MPL-2.0
 */
import Component from '@glimmer/component';
import type { HdsTableHorizontalAlignment } from './types.ts';
import { HdsTableHorizontalAlignmentValues } from './types.ts';
export declare const ALIGNMENTS: HdsTableHorizontalAlignment[];
export declare const DEFAULT_ALIGN = HdsTableHorizontalAlignmentValues.Left;
export interface HdsTableTdSignature {
    Args: {
        align?: HdsTableHorizontalAlignment;
    };
    Blocks: {
        default: [];
    };
    Element: HTMLTableCellElement;
}
export default class HdsTableTd extends Component<HdsTableTdSignature> {
    get align(): HdsTableHorizontalAlignment;
    get classNames(): string;
}
