import * as React from 'react'; export interface FullWidthDropdownProps { className?: string; children?: any; style?: object; [key: string]: any; } /** * Convenience component to take up 100% of the input container's width. */ export declare class FullWidthDropdown extends React.Component { render(): JSX.Element; }