import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface NavRailProps extends HTMLAttributes, TestableProps {
ref?: Ref;
children?: ReactNode;
collapsed?: boolean;
}
export declare const NavRail: FC;