import * as React from 'react'; import { AnchorProps } from '../Anchor'; export interface ActionLinkProps extends AnchorProps { /** * Sets the action link as active. */ active?: boolean; /** * Sets the action link as a block. */ block?: boolean; } export interface StyledActionLink { disabled?: boolean; block?: boolean; } /** * The action link component gives a simple text link to be used in call for action scenarios. */ export declare const ActionLink: React.SFC & { inner: { readonly StyledActionLink: any; }; };