import { FC, ReactNode } from "react";
declare type MenuOrientation = "horizontal" | "vertical";
export declare function useOrientation(): MenuOrientation;
interface OrientationProviderProps {
    orientation: MenuOrientation;
    children: ReactNode;
}
export declare const OrientationProvider: FC<OrientationProviderProps>;
export {};
