You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
335 B

import * as React from 'react';
import { OffcanvasProps } from './Offcanvas';
export declare type NavbarOffcanvasProps = Omit<OffcanvasProps, 'show'>;
declare const NavbarOffcanvas: React.ForwardRefExoticComponent<Pick<NavbarOffcanvasProps, keyof OffcanvasProps> & React.RefAttributes<HTMLDivElement>>;
export default NavbarOffcanvas;