import React from 'react'; export interface SidebarProps extends StyleProps { items?: SidebarItems[]; user?: Profile; saldo?: Wallet; } interface Profile { image?: string; name?: string; status?: string; } interface Wallet { icon?: string; title?: string; items?: WalletItems[]; } interface WalletItems { item?: string; value?: string; } interface StyleProps { padding?: string; url?: string; size?: string; row?: boolean; spaceBetween?: boolean; } interface SidebarItems { title?: string; list?: object[]; } declare class Sidebar extends React.PureComponent { static propTypes: { items: import("prop-types").Requireable<(import("prop-types").InferProps<{ title: import("prop-types").Requireable; list: import("prop-types").Requireable<(import("prop-types").InferProps<{ children: import("prop-types").Requireable; onClick: import("prop-types").Requireable any)>; }> | null | undefined)[]>; }> | null | undefined)[]>; }; render(): JSX.Element; } export default Sidebar;