export default class SelectWrapperDemo extends React.Component<any, any, any> {
    constructor(props: any);
    constructor(props: any, context: any);
    state: {
        options: {
            value: string;
            label: string;
        }[];
        selectedSingle: undefined;
        selectedMulti: undefined;
    };
    onSingleSelectionChange: (selectedSingle: any) => void;
    onMultiSelectionChange: (selectedMulti: any) => void;
    render(): React.JSX.Element;
}
import React from 'react';
//# sourceMappingURL=selectwrapper.d.ts.map