import * as React from "react"; import { ReactNode, Ref } from "react"; import { AnchorElementProps } from "@stenajs-webui/core"; import { CommonButtonProps } from "../../buttons/common/ButtonCommon"; export interface BaseButtonLinkRenderProps extends AnchorElementProps { className: string; children: ReactNode; ref?: Ref; } export interface BaseButtonLinkProps extends CommonButtonProps, AnchorElementProps { /** Render the link as a custom element (e.g. a router link). * Spread the supplied props onto your element to inherit styling, ref, anchor * props and the pre-rendered button content (label, icons, loading state). */ render?: (props: BaseButtonLinkRenderProps) => ReactNode; } export declare const BaseButtonLink: React.ForwardRefExoticComponent>;