import type { BaseButtonProps } from '../../types/button'; import React from 'react'; export interface UnstyledButtonProps extends BaseButtonProps { /** The content to display inside the button */ children?: string | string[] | undefined | React.ReactNode; /** A custom class name to apply styles to button */ className?: string; } export declare const UnstyledButton: React.ForwardRefExoticComponent>;