/**
 * Copyright 2020, Verizon Media
 * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms.
 */
import React from 'react';
export declare const DnLink: {
    ({ children, className, isActive, isDisabled, isSmall, isSecondary, isSub, frontIconComponent, backIconComponent, ...rest }: DnLinkProps): JSX.Element;
    defaultProps: {
        className: string;
        children: null;
        isActive: boolean;
        isDisabled: boolean;
        isSmall: boolean;
        isSecondary: boolean;
        isSub: boolean;
        frontIconComponent: null;
        backIconComponent: null;
    };
};
export interface DnLinkProps {
    className?: string;
    children?: React.ReactNode;
    isActive?: boolean;
    isDisabled?: boolean;
    isSmall?: boolean;
    isSecondary?: boolean;
    isSub?: boolean;
    frontIconComponent?: React.ReactNode;
    backIconComponent?: React.ReactNode;
}
//# sourceMappingURL=DnLink.d.ts.map