import { As, CSSCustomProperties, InternalForwardRefRenderFunction } from '../../../core/system'; import { ComponentProps } from 'react'; export type HeaderProps = { sticky?: boolean; style?: CSSCustomProperties | undefined; } & Omit, 'color'>; export type HeaderLogoProps = { as?: As; } & ComponentProps<'section'>; export type HeaderMenuProps = { as?: As; overflowShadow?: boolean; }; export type HeaderMenuLinkProps = { as?: As; }; declare const _default: InternalForwardRefRenderFunction<"header", HeaderProps, never> & { displayName: string; Logo: InternalForwardRefRenderFunction<"section", HeaderLogoProps, never> & { displayName: string; }; Menu: InternalForwardRefRenderFunction<"nav", HeaderMenuProps, never> & { displayName: string; Link: InternalForwardRefRenderFunction<"a", HeaderMenuLinkProps, never> & { displayName: string; }; }; }; export default _default; //# sourceMappingURL=header.d.ts.map