fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
12 lines (11 loc) • 695 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../../Element/constants';
export interface SidebarWrapperCustomProps {
collapsed?: boolean;
closeOnClickOutside?: () => void;
showMobileSidebar?: boolean;
}
export type SidebarWrapperElementType = HTMLDivElement;
export type SidebarWrapperNewProps = Omit<CommonAndHTMLProps<SidebarWrapperElementType>, keyof SidebarWrapperCustomProps> & SidebarWrapperCustomProps;
export declare const SidebarWrapper: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLDivElement>, keyof SidebarWrapperCustomProps> & SidebarWrapperCustomProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=SidebarWrapper.d.ts.map