import { type ComponentPropsWithRef, type CSSProperties, type ElementType, type ReactNode } from 'react'; type StarBorderOwnProps = { as?: E; className?: string; children?: ReactNode; color?: CSSProperties['color']; speed?: CSSProperties['animationDuration']; thickness?: number; style?: CSSProperties; ref?: ComponentPropsWithRef['ref']; }; type StarBorderProps = StarBorderOwnProps & Omit, keyof StarBorderOwnProps>; declare const StarBorder: ({ as, className, children, color, speed, thickness, style, ref, ...props }: StarBorderProps) => import("react/jsx-runtime").JSX.Element; export { StarBorder }; export type { StarBorderProps };