import { default as React } from 'react';
type CssPosition = 'fixed' | 'absolute' | 'relative' | 'static' | 'sticky';
type CardNodeProps = {
    tag?: 'div' | 'a' | 'button';
    href?: string;
    stacked?: boolean;
    color?: string;
    position?: CssPosition;
    children?: React.ReactNode;
    className?: string;
};
declare const CardNode: React.FC<CardNodeProps & React.HTMLAttributes<HTMLAnchorElement | HTMLDivElement | HTMLButtonElement>>;
export { CardNode };
