import React from 'react';
import { IBaseElement, IPropsAny } from '../types';
export declare type ICardButton = IBaseElement & {
    focus?: boolean;
    selected?: boolean;
    href?: boolean;
    onFocus?: (event: React.FocusEvent<any>) => any;
    onBlur?: (event: React.FocusEvent<any>) => any;
    InteractionProps?: IPropsAny;
};
declare const CardButton: React.FC<ICardButton>;
export default CardButton;
