/**
 * @license
 * Copyright 2025 Sandlada & Kai Orion
 * SPDX-License-Identifier: MIT
 */
import type { ExtractPublicPropTypes, PropType } from 'vue';
import type { INavigationItem } from '../../internals';
export declare const NavigationRailPosition: {
    readonly Left: "top";
    readonly Center: "center";
    readonly Right: "bottom";
};
export type TNavigationRailPosition = typeof NavigationRailPosition[keyof typeof NavigationRailPosition];
export declare const props: {
    readonly defaultActiveOrder: {
        readonly type: PropType<number>;
        readonly default: -2;
    };
    readonly position: {
        readonly type: PropType<TNavigationRailPosition>;
        readonly default: "center";
    };
    readonly tabs: {
        readonly type: PropType<Array<INavigationItem>>;
        readonly default: readonly [];
    };
    readonly hideInactiveLabel: {
        readonly type: PropType<boolean>;
        readonly default: false;
    };
};
export type TNavigationRailProps = ExtractPublicPropTypes<typeof props>;
export type TNavigationRailSlots = {
    default?: void;
    start?: void;
    end?: void;
};
//# sourceMappingURL=navigation-rail.definition.d.ts.map