import React from 'react';
import { ISurface } from '../Surface/Surface';
import { INavigationItemVersion } from '../NavigationItem/NavigationItem';
import { IElement, IPropsAny } from '../types';
export declare type INavigationRail = Omit<ISurface, 'version' | 'onChange'> & {
    value?: any;
    valueDefault?: any;
    onChange?: (value: any) => any;
    version?: INavigationItemVersion;
    justify?: 'start' | 'center' | 'end';
    border?: boolean;
    header?: IElement;
    fixed?: boolean;
    NavigationBarProps?: IPropsAny;
    DividerProps?: IPropsAny;
};
declare const NavigationRail: React.FC<INavigationRail>;
export default NavigationRail;
