import type { HTMLAttributes, ReactNode } from 'react';
export type InnerGlowCardColors = string | readonly string[];
export type InnerGlowCardProps = HTMLAttributes & {
children?: ReactNode;
colors?: InnerGlowCardColors;
glowBlur?: number | string;
glowWidth?: number | string;
duration?: number | string;
radius?: number | string;
background?: string;
foreground?: string;
};
export declare const InnerGlowCard: ({ children, className, style, colors, glowBlur, glowWidth, duration, radius, background, foreground, ...props }: InnerGlowCardProps) => import("react/jsx-runtime").JSX.Element;