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