import { ReactNode } from 'react';
interface ActionBarPrefixAreaProps {
    children: ReactNode;
    ariaKeyshortcuts?: string;
}
/**
 * Prefix content area with optional keyboard shortcut announcement
 * @internal
 */
export declare const ActionBarPrefixArea: ({ children, ariaKeyshortcuts, }: ActionBarPrefixAreaProps) => import("react/jsx-runtime").JSX.Element;
export {};
