import React from 'react'; interface NavBarDropDownProps { className?: string; children?: React.ReactNode; } declare const defaultProps: {}; declare type NativeAttrs = Omit, keyof NavBarDropDownProps>; export declare type GNavBarDropDownProps = NavBarDropDownProps & typeof defaultProps & NativeAttrs; declare const _default: React.ForwardRefExoticComponent & Omit & NativeAttrs & React.RefAttributes>; export default _default;