export interface UseOrientationProps {
    angle: number;
    type: string;
}
declare const useOrientation: (initialState?: UseOrientationProps) => UseOrientationProps;
export default useOrientation;
