import { ButtonBaseProps } from '../base'; /** * Props for {@link Button}. * Extends {@link ButtonBaseProps}. * * @category Button */ export type ButtonProps = Omit; /** * Primary action button used to trigger user actions. * * Use for actions such as submit, confirm, save, or navigate within the application. * * @category Button * @function * @param props - All button props inherited from {@link ButtonBase}. * * @example *