import React from 'react'; import { type LinkProps as RACLinkProps } from 'react-aria-components'; import { type ButtonUIProps } from "../Button"; export type LinkButtonProps = ButtonUIProps & Omit & { /** Used as the label for the LinkButton. */ children: RACLinkProps['children']; }; export declare const LinkButton: React.ForwardRefExoticComponent & { /** Used as the label for the LinkButton. */ children: RACLinkProps["children"]; } & React.RefAttributes>;