import React from "react"; //#region src/Pagehead/Pagehead.d.ts declare const Pagehead: ({ as: BaseComponent, className, ...rest }: PageheadProps) => React.JSX.Element; /** * @deprecated */ type PageheadProps = React.ComponentPropsWithoutRef<'div'> & { as?: React.ElementType; }; //#endregion export { PageheadProps, Pagehead as default };