import * as React from 'react';
import { OthersCategoryContext } from "./OthersCategoryContext";
import { ContentChildrenManager } from "igniteui-react-core";
export declare class IgrOthersCategoryContext<P extends IIgrOthersCategoryContextProps = IIgrOthersCategoryContextProps> extends React.Component<P, {}> {
    protected createImplementation(): OthersCategoryContext;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): OthersCategoryContext; /**
                                 * @hidden
                                 */
    static _createFromInternal(internal: any): IgrOthersCategoryContext;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor(props: P);
    componentDidMount(): void;
    shouldComponentUpdate(nextProps: any, nextState: any): boolean;
    render(): any;
    /**
     * Gets the items in the others category.
    */
    get items(): any[];
    set items(v: any[]);
    findByName(name: string): any;
    protected __p: string;
    protected _hasUserValues: Set<string>;
    protected get hasUserValues(): Set<string>;
    protected __m(propertyName: string): void;
    protected _stylingContainer: any;
    protected _stylingParent: any;
    protected _inStyling: boolean;
    protected _styling(container: any, component: any, parent?: any): void;
}
export interface IIgrOthersCategoryContextProps {
    children?: React.ReactNode;
    /**
     * Gets the items in the others category.
    */
    items?: any[];
}
