export type OrientationType = "portrait" | "landscape";
export declare const useOrientation: () => {
    orientation: OrientationType;
    angle: number;
};
