import { JSX } from 'react'; import { ButtonLinkContainerStyle } from '../theme/button-link.css'; export interface CustomHref { href?: string; handler: () => void; } export type ButtonLinkProps = { children?: React.ReactNode; href?: CustomHref | string; icon?: string; className?: string; } & Omit, "href"> & ButtonLinkContainerStyle; export declare const ButtonLink: ({ href, className, icon, children, position, ...props }: ButtonLinkProps) => JSX.Element; //# sourceMappingURL=button-link.d.ts.map