import React, { ReactNode } from 'react'; export interface DirectionNavProps { height?: number; direction: "left" | "right"; fn?: () => void; css?: any; } export declare const DirectionNav: ({ children, type, navCSS, layout, ...props }: { children: ReactNode; handleLeft?: () => void; handleRight?: () => void; type?: "caret" | "triangle"; height?: number; containerCSS?: any; navCSS?: any; layout?: "compact" | "expanded"; }) => React.JSX.Element;