interface Options {
    dir: 'rtl' | 'ltr';
    orientation: 'horizontal' | 'vertical' | undefined;
    direction: 'next' | 'previous';
}
export declare function getChevronRotation({ dir, orientation, direction }: Options): number;
export {};
