Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import { HeaderState } from './typings';
/**
* @todo probably would make more sense as a class, standard
*/
declare const state: HeaderState;
declare function handleMenuToggle(): void;
declare function handleMenuDropDownToggle(): void;
declare function handleShowMobileMenu(): void;
/**
* @todo handle this and handle close here?
*/
declare function handleShowDepartments(): void;
export default state;
export { state, handleMenuDropDownToggle, handleShowDepartments, handleShowMobileMenu, handleMenuToggle, };