import React from 'react';
import { type FunButtonProps } from '../FunButton/FunButton';
export interface FunBottomBarProps {
    topSection?: React.ReactNode;
    topSectionVisible?: boolean;
    actionButtonProps?: FunButtonProps;
    onClose?: () => void;
    onCloseLabel?: string;
}
export declare const FunBottomBar: ({ topSection, topSectionVisible, actionButtonProps, onClose, onCloseLabel, }: FunBottomBarProps) => React.JSX.Element | null;
