import { PureComponent, ReactChild } from 'react';
import PropTypes from 'prop-types';
export interface ICustomSelectFacePassedProps {
    multiple?: boolean;
    disabled?: boolean;
}
export interface ICustomSelectFaceProps {
    children(label: ReactChild, props: ICustomSelectFacePassedProps): ReactChild;
}
export declare const isCustomSelectFace: unique symbol;
export declare class CustomSelectFace extends PureComponent<ICustomSelectFaceProps> {
    static [isCustomSelectFace]: boolean;
    static propTypes: {
        children: PropTypes.Validator<(...args: any[]) => any>;
    };
    render(): any;
}
//# sourceMappingURL=CustomSelectFace.d.ts.map