import { ActionIconProps } from '@mantine/core'; import { ComponentPropsWithoutRef } from 'react'; /** The props `` accepts: Mantine's `ActionIconProps` plus button element attrs. */ export type ActionIconHookProps = ActionIconProps & Omit, keyof ActionIconProps>; /** * Merges Mantine's resolved ActionIcon defaults with the caller-supplied props. */ export declare function useActionIcon(props: ActionIconHookProps): ActionIconHookProps;