/** * ButtonOrLink is adapted from the reakit Button, Clickable, and Tabbable source code: * - https://github.com/ariakit/ariakit/blob/reakit/packages/reakit/src/Button/Button.ts * - https://github.com/ariakit/ariakit/blob/reakit/packages/reakit/src/Clickable/Clickable.ts * - https://github.com/ariakit/ariakit/blob/reakit/packages/reakit/src/Tabbable/Tabbable.ts */ import React from 'react'; /** * @deprecated Use Pressable instead. This will be removed in a future major release. * @deprecationExpectedRemoval v9 */ export declare const ButtonOrLink: React.MemoExoticComponent< React.ForwardRefExoticComponent< React.AllHTMLAttributes & { to?: string; focusable?: boolean; } & React.RefAttributes > >; //# sourceMappingURL=ButtonOrLink.d.ts.map