import { default as React } from 'react'; import { SlideOverProps } from '../..'; type RequiredSliderOverProps = 'isOpen' | 'direction' | 'size'; export interface NavbarSliderProps extends Omit { /** * A boolean value that represents the state of the slider. */ isOpen?: SlideOverProps['isOpen']; /** * Represents the side that the slider comes from. */ direction?: SlideOverProps['direction']; /** * Represents the size of the slider. */ size?: SlideOverProps['size']; } declare function NavbarSlider({ children, size, isOpen, direction, testId, ...otherProps }: NavbarSliderProps): React.JSX.Element; export default NavbarSlider; //# sourceMappingURL=NavbarSlider.d.ts.map