import * as React from "react"; declare type Props = Readonly<{ ariaControls: string; children: React.ReactNode; iconLeft?: React.ReactElement; title?: string; spaceAfter?: "normal"; onClick?: () => void; href?: string; disabled?: boolean; }>; declare const SidePanelButtonLink: ({ ariaControls, children, disabled, ...rest }: Props) => React.ReactElement; export default SidePanelButtonLink;