import { type ElementType, type Ref } from 'react'; import { type ButtonBaseProps } from '../ButtonBase/ButtonBase'; type Props = ButtonBaseProps & { ref?: Ref; }; export declare const NeonButton: ({ className, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export {};