import { Interpolation, Theme } from '@emotion/react'; import { HTMLAttributes } from 'react'; export type HeaderProps = { buttonsCss?: Interpolation; } & HTMLAttributes; export declare const Header: ({ buttonsCss, children, ...props }: HeaderProps) => import("@emotion/react/jsx-runtime").JSX.Element;