import * as React from "react"; import { type VariantProps } from "../../utils.js"; declare const headerVariants: (props?: ({ sticky?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface HeaderProps extends React.HTMLAttributes, VariantProps { } declare const Header: ({ className, sticky, ...props }: HeaderProps) => React.JSX.Element; export { Header, type HeaderProps };