export type FinchHeaderProps = { /** Title text displayed in the header. */ title?: string; /** URL of the logo image displayed in the header. Ignored when `logoIcon` is provided. */ logoUrl?: string; /** * A React element rendered in place of the logo image. * When provided, `logoUrl` is not rendered. */ logoIcon?: React.ReactElement; /** Additional CSS classes applied to the root header element. */ className?: string; /** Additional CSS classes applied to the logo image element. Only applies when using `logoUrl`. */ classNameImage?: string; /** Additional CSS classes applied to the title element. */ classNameTitle?: string; /** Arbitrary JSX rendered on the right side of the header. */ rightSlot?: React.ReactNode; }; /** * Application header bar with a logo, title, and optional right-side slot. * * Pass `logoIcon` to render a custom React element as the logo. * If only `logoUrl` is provided, an `` is rendered instead. */ export default function HubHeader({ title, logoUrl, logoIcon, className, classNameImage, classNameTitle, rightSlot, ...props }: FinchHeaderProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FinchHeader.d.ts.map