/// <reference types="react" />
import { CompanyLinkType, FooterLinksType } from "../Footer";
import { LangSwitchProps } from "../LangSwitch";
type FooterPostLoginProps = LangSwitchProps & {
    companyLink: CompanyLinkType;
    links: Array<FooterLinksType>;
    onExit?: (exitAction: () => void) => void;
};
export declare const FooterPostLogin: ({ companyLink, links, onExit, ...langProps }: FooterPostLoginProps) => JSX.Element;
export {};
