import React from 'react';
import { TariffPlan } from '@/ui/components/types';
export type FooterMobileButtonClickHandler = () => unknown;
export type FooterMobileButtonActiveProp = 'menu' | 'chats' | 'settings' | null;
export interface FooterMobileProps {
    isPreset?: boolean;
    src?: string;
    tariffPlan?: TariffPlan;
    activeButton?: FooterMobileButtonActiveProp;
    onMenuClick: FooterMobileButtonClickHandler;
    onChatsClick: FooterMobileButtonClickHandler;
    onAddChatClick: FooterMobileButtonClickHandler;
    onSettingsClick: FooterMobileButtonClickHandler;
    onUserClick: FooterMobileButtonClickHandler;
}
export declare const FooterMobile: React.FC<FooterMobileProps>;
