export declare type CustomLinkProps = {
    link: string;
    onInsertLink: (link: string) => void;
    text: string;
};
declare const CustomLink: {
    (props: any): JSX.Element;
    defaultProps: {
        link: string;
        onInsertLink: () => {};
        text: string;
    };
};
export default CustomLink;
