import React from "react"; declare type Props = { label: string; icon?: React.ReactNode; active?: boolean; onClick?: (event: any) => void; href?: string; target?: "_blank" | "_self" | "_parent" | "_top"; disabled?: boolean; children?: React.ReactNode | null; newStatus?: boolean; openedByDefault?: boolean; }; export declare const SidebarOption: React.FC; export {};