import React from 'react';
type HTMLTagName = keyof HTMLElementTagNameMap;
type AsButtonProps = {
as?: 'button';
} & React.ButtonHTMLAttributes;
type AsAnchorProps = {
as?: 'a';
} & React.AnchorHTMLAttributes;
type AsOtherTagProps = {
as?: Exclude;
} & React.HTMLAttributes;
type AsAnyComponentProps = {
as?: React.ComponentType;
onClick?: React.MouseEventHandler;
[props: string]: any;
};
type SidebarItemButtonNextProps = (AsButtonProps | AsAnchorProps | AsOtherTagProps | AsAnyComponentProps) & {
children?: React.ReactNode;
dataHook?: string;
className?: string;
itemKey?: string;
prefix?: React.ReactNode;
suffix?: React.ReactNode;
role?: string;
disabled?: boolean;
isInQuickNavigation?: boolean;
onClick?: React.MouseEventHandler;
depth?: 'first' | 'second' | 'third';
depthDivider?: 'top' | 'full' | 'bottom';
};
declare const SidebarItemButtonNext: React.NamedExoticComponent;
export default SidebarItemButtonNext;
//# sourceMappingURL=SidebarItemButtonNext.d.ts.map