import React from 'react';
import { INavigationRow } from './types/navigationRow';
declare const NavigationRowBoundary: <V extends string | unknown>(props: INavigationRow<V>, ref: React.ForwardedRef<HTMLButtonElement> | undefined | null) => JSX.Element;
declare const NavigationRow: <V extends string | unknown>(props: React.PropsWithChildren<INavigationRow<V>> & {
    ref?: React.ForwardedRef<HTMLButtonElement> | undefined | null;
}) => ReturnType<typeof NavigationRowBoundary>;
export { NavigationRow };
