@payfit/unity-components
Version:
12 lines (11 loc) • 376 B
TypeScript
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 {};