import { FC } from 'react'; import { AppBarInterface } from './appBar.types'; export declare function useAppBar({ show, smallAppBarWidth, }?: { show: boolean; smallAppBarWidth: number; }): { onOpenedClick: () => void; opened: boolean; smallAppBar: boolean; }; export declare const AppBar: FC;