import { ReactNode } from "react"; export type ActionBarProps = { /** Controls the visibility of the bar with an enter/exit animation. */ open: boolean; /** Called when the close (X) button is clicked. */ onClose: () => void; /** Accessible label for the close button. Required because the button is icon-only. */ closeLabel: string; /** Primary text shown next to the close button (e.g. "3 selected"). */ text?: ReactNode; /** Optional inline action displayed next to `text` (e.g. a "Select all" button). */ inlineAction?: ReactNode; /** Action buttons displayed on the trailing edge of the bar. */ children?: ReactNode; className?: string; }; export declare const ActionBar: ({ open, onClose, closeLabel, text, inlineAction, children, className, }: ActionBarProps) => import("react").JSX.Element; //# sourceMappingURL=ActionBar.d.ts.map