import * as React from "react"; declare type Props = Readonly<{ children: React.ReactNode; href?: string; iconLeft?: React.ReactElement; onClick?: (event: any) => void | Promise; }>; declare const SidePanelTextLink: ({ children, href, iconLeft, onClick }: Props) => JSX.Element; export default SidePanelTextLink;