import { type AnchorHTMLAttributes, type ComponentType, type FC, type ReactNode, type Ref } from 'react';
import type { SvgIconProps } from '../../icons/SvgIcon';
import { type TestableProps } from '../../utils/testId';
export interface NavRailItemProps extends AnchorHTMLAttributes, TestableProps {
ref?: Ref;
asChild?: boolean;
icon: ComponentType;
label: ReactNode;
shortcut?: string[];
active?: boolean;
}
export declare const NavRailItem: FC;