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