import { type FC, type ComponentProps, type ElementType, type ReactNode } from "react"; import { Box } from "../Box/Box"; type Props = { /** * The indicator to render on hover */ indicator: ReactNode; /** * Disables the hover indicator * @default false */ disabled?: boolean; /** * Sets the element type, defaults to button * * @default 'button' */ as?: ElementType; children: ReactNode; } & ComponentProps; export declare const HoverIndicatorControl: FC & { Indicator: FC; }; export {};