import type { AnchorHTMLAttributes, ComponentPropsWithoutRef, ReactNode } from 'react'; import { type CssLength } from '../../../utils/css'; export type ScrollySpriteHeaderProps = Omit, 'children' | 'title'> & { avatarAlt?: string; avatarSize?: CssLength; avatarSrc?: string; backdropAlt?: string; backdropSrc?: string; children?: ReactNode; contentWidth?: CssLength; displayName?: ReactNode; handle?: ReactNode; handleHref?: string; handleRel?: AnchorHTMLAttributes['rel']; handleTarget?: AnchorHTMLAttributes['target']; headerHeight?: CssLength; placeholderCount?: number; titleHeight?: CssLength; }; export declare const ScrollySpriteHeader: ({ "aria-label": ariaLabel, avatarAlt, avatarSize, avatarSrc, backdropAlt, backdropSrc, children, className, contentWidth, displayName, handle, handleHref, handleRel, handleTarget, headerHeight, placeholderCount, style, titleHeight, ...sectionProps }: ScrollySpriteHeaderProps) => import("react/jsx-runtime").JSX.Element;