import React from 'react';
import { ClickableCardProps } from './ClickableCard.types';
declare const ClickableCard: {
    <T extends "button" | "a" = "button">(props: ClickableCardProps<T>): React.JSX.Element;
    displayName: string;
    Action: {
        ({ children }: import("./components/Action/Action.types").ActionProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
        displayName: string;
    };
};
export default ClickableCard;
//# sourceMappingURL=ClickableCard.d.ts.map