import "./SidebarActions.scss";
import React from "react";
export interface SidebarActionsProps {
    className?: string;
    inBookmark?: boolean;
    visited?: boolean;
    showVisited?: boolean;
    showBookmark?: boolean;
    showDirections?: boolean;
    showRoutePlanner?: boolean;
    showShare?: boolean;
    onClickBookmark?: () => void;
    onClickVisited?: () => void;
    onClickDirections?: () => void;
    onClickRoutePlanner?: () => void;
    onClickShare?: () => void;
}
declare const SidebarActions: React.FC<SidebarActionsProps>;
export default SidebarActions;
//# sourceMappingURL=SidebarActions.d.ts.map