import { default as React } from 'react'; type HTMLButtonProps = Omit, 'children'>; export interface PrintPositionProps extends HTMLButtonProps { /** * The position number. */ position: number; /** * The label of the button shown on hover. * If not provided, the button will not be shown. */ label?: string; /** * Callback triggered when pressing the button. */ onClick?: HTMLButtonProps['onClick']; /** * Disables the button. */ disabled?: HTMLButtonProps['disabled']; } export declare const PrintPosition: React.ForwardRefExoticComponent>; export {};