import { default as React } from 'react';

type CustomLinkProps = {
    to: string;
    children: React.ReactNode;
    focusKey?: string;
    handlePress?: () => void | undefined;
    handleRelease?: () => void | undefined;
    disabled?: boolean;
    overrideFocus?: boolean;
    className?: string;
};
export declare const CustomLink: React.FC<CustomLinkProps>;
export {};
