/// <reference types="react" />
export declare type Props = {
    page?: number;
    onSelect?: any;
    children?: any[];
};
export declare const Sidebar: (p: Props) => JSX.Element;
export declare type SideIconProps = {
    onClick: any;
    name: string;
    pageindex?: number;
    onSelect?: any;
    className?: string;
    style?: {};
    enabled?: boolean;
    title?: string;
};
export declare const SideIcon: (p: SideIconProps) => JSX.Element;
