import { FC, HTMLAttributes } from 'react';
import { IPktFooterSimpleProps } from '../../shared-types';
import { TFooterConsentConfig } from '../footer/FooterGlobal';
export interface IPktFooterSimple extends IPktFooterSimpleProps<string>, TFooterConsentConfig, Omit<HTMLAttributes<HTMLElement>, 'children'> {
    onDataError?: (error: Error) => void;
    /**
     * @deprecated The privacy link now comes from the global footer's payload.
     * Only rendered (in the secondary footer) when explicitly set to a
     * non-default value.
     */
    personvernOgInfoLink?: string;
    /**
     * @deprecated The accessibility link now comes from the global footer's
     * payload. Only rendered (in the secondary footer) when explicitly set
     * to a non-default value.
     */
    tilgjengelighetLink?: string;
}
/**
 * PktFooterSimple — kompakt footer: en sentrert rad med pil-lenker i det
 * grå sekundær-båndet, stablet oppå den globale (blå) footeren. Uten
 * `links` rendres kun den globale footeren.
 */
export declare const PktFooterSimple: FC<IPktFooterSimple>;
