@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
10 lines (9 loc) • 447 B
TypeScript
import React from 'react';
import { IHeaderStructure } from './types/headerStructure';
/**
* @deprecated This component has been deprecated and will be removed in the next MAJOR release. Will include all this on the NavBar component
*/
declare const HeaderStructure: <V extends string | unknown>(props: IHeaderStructure<V> & {
ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => React.JSX.Element;
export { HeaderStructure };