import { CSSProperties } from 'react'; import { type SplineProps } from "../Spline"; export interface LogoSplineProps extends Partial { className?: string; height?: number | string; style?: CSSProperties; width?: number | string; } declare const LogoSpline: import("react").NamedExoticComponent; export default LogoSpline;