import React, { FC } from 'react'; import { viusage } from '../../../../util'; export declare const SIDEBAR_CONTAINER_CLASSNAMES: string[]; export declare const SIDEBAR_CONTAINER_STYLE: React.CSSProperties; export declare const SIDEBAR_INNER_CLASSNAMES: string[]; export declare const SIDEBAR_INNER_STYLE: React.CSSProperties; export declare type SelfSidebarProps = { children?: React.ReactNode; style?: React.CSSProperties; overrideStyle?: boolean; classNames?: string[]; overrideClasses?: boolean; viusage?: viusage.primary.Viusagelike; which?: "overview" | "subscriptions" | "tos"; onWhich?: (which: "overview" | "tos") => Promise; onFeedbackSubmit?: (feedback: string) => Promise; }; export declare const SelfSidebar: FC;