import { CSSProperties, ReactNode } from 'react'; export type Props = { children?: ReactNode; className?: string; style?: CSSProperties; }; /** * A card component with scroll-timeline shine effects that animate based on scroll position. * * The component uses CSS `animation-timeline: view()` to create smooth animations that respond * to the card's visibility in the viewport. It's completely agnostic - whatever content you * put inside will be rendered with the shine animation effects. * * @param props - The component props * @returns A React functional component */ export declare const ShineCard: ({ children, className, style, ...props }: Props) => import("react/jsx-runtime").JSX.Element;