import { CLinkProps } from '../link/CLink';
import { PolymorphicRefForwardingComponent } from '../../helpers';
export interface CNavLinkProps extends Omit<CLinkProps, 'idx'> {
    /**
     * @ignore
     */
    idx?: string;
    /**
     * @ignore
     */
    to?: string;
}
export declare const CNavLink: PolymorphicRefForwardingComponent<'a', CNavLinkProps>;
