import * as React from 'react'; import { LinkProps } from '../Link'; type VisualProps = Pick & { disabled?: boolean; children: React.ReactNode; }; type AnchorVariant = Omit, 'children' | 'disabled'> & { href: string; }; type ButtonVariant = { onClick: React.MouseEventHandler; } & Omit, 'children'>; export type ActionLinkButtonProps = VisualProps & (AnchorVariant | ButtonVariant); export type LinkStyleProps = LinkProps; export declare const ActionLinkButton: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=ActionLink.d.ts.map