UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

17 lines (16 loc) 471 B
import { ButtonProps } from '../../../../components/Button'; import { Path } from '../../types'; export type Props = ButtonProps & { path?: Path; itemPath?: Path; pushValue: unknown | ((value: unknown) => void); /** * Used internally */ value?: unknown; }; declare function PushButton(props: Props): import("react/jsx-runtime").JSX.Element; declare namespace PushButton { var _supportsSpacingProps: boolean; } export default PushButton;