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;
