/**
 * Copyright IBM Corp. 2021, 2025
 * SPDX-License-Identifier: MPL-2.0
 */
import Component from '@glimmer/component';
import type HdsIntlService from '../../../services/hds-intl.ts';
export interface HdsAppFooterLegalLinksSignature {
    Args: {
        ariaLabel?: string;
        hrefForTerms?: string;
        hrefForPrivacy?: string;
        hrefForSecurity?: string;
        hrefForSupport?: string;
        hrefForAccessibility?: string;
    };
    Element: HTMLUListElement;
}
export default class HdsAppFooterLegalLinks extends Component<HdsAppFooterLegalLinksSignature> {
    readonly hdsIntl: HdsIntlService;
    get ariaLabel(): string;
    get hrefForSupport(): string;
    get hrefForTerms(): string;
    get hrefForPrivacy(): string;
    get hrefForSecurity(): string;
    get hrefForAccessibility(): string;
}
