import * as React from 'react'; export interface VariableWidthDropdownProps { style?: object; [key: string]: any; } /** * A dynamic width dropdown for content with a max and min width. Requires support for * flexbox and pointer-events. */ export declare class VariableWidthDropdown extends React.Component { render(): JSX.Element; }