export interface ArrowNavProps {
    /** Top label information */
    label: string;
    /** Title */
    title: string;
    /** Link information */
    info?: string;
    /** Arrow Direction */
    direction?: "left" | "right";
    /** Link href */
    href?: string;
    /** Function */
    onClick?(...args: unknown[]): unknown;
    /** Bottom Link text */
    text?: string;
}
declare const ArrowNav: {
    (props: ArrowNavProps): any;
    defaultProps: {
        info: string;
        href: string;
        onClick: string;
        text: string;
        direction: string;
    };
};
export default ArrowNav;
