import type { CSSProperties, ReactNode } from 'react'; type ActionBarProps = { children: ReactNode; /** * The position of the bar (start at 0) */ rank?: number; role?: string; className?: string; 'data-testid'?: string; style?: CSSProperties; }; export declare function ActionBar({ children, role, rank, className, style, 'data-testid': dataTestId, }: ActionBarProps): import("react").ReactPortal; export declare namespace ActionBar { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map