fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
10 lines (9 loc) • 593 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../../Element/constants';
export interface SidebarHeaderCustomProps {
isSticky?: boolean;
}
export type SidebarHeaderElementType = HTMLDivElement;
export type SidebarHeaderNewProps = Omit<CommonAndHTMLProps<SidebarHeaderElementType>, keyof SidebarHeaderCustomProps> & SidebarHeaderCustomProps;
export declare const SidebarHeader: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLDivElement>, "isSticky"> & SidebarHeaderCustomProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=SidebarHeader.d.ts.map