/// <reference types="react" />
import { CompanyLinkType, PreLoginFooterLinksType } from '../Footer';
import { LangSwitchProps } from '../LangSwitch';
type FooterPreLoginProps = LangSwitchProps & {
    companyLink: CompanyLinkType;
    links: PreLoginFooterLinksType;
    onExit?: (exitAction: () => void) => void;
    /** This URL contains a json with the list of products to list inside the Footer. By default it's set with https://selfcare.pagopa.it/assets/products.json */
    productsJsonUrl?: string;
    productsTitle?: string;
    onProductsJsonFetchError?: (reason: any) => void;
    /** If true, it will not render the products column. As default, the column will be visible */
    hideProductsColumn?: boolean;
};
export declare const FooterPreLogin: ({ companyLink, links, onExit, productsJsonUrl, productsTitle, onProductsJsonFetchError, hideProductsColumn, ...langProps }: FooterPreLoginProps) => JSX.Element;
export {};
