import React from 'react'; import { IHasChildren } from '@epam/uui-core'; import { ClickableComponentProps } from '../widgets'; export type AnchorProps = ClickableComponentProps & IHasChildren & {}; export declare const Anchor: React.ForwardRefExoticComponent & { onKeyDown?: (e: React.KeyboardEvent) => void; } & IHasChildren & React.RefAttributes>; //# sourceMappingURL=Anchor.d.ts.map