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 SidebarFooterCustomProps {
isSticky?: boolean;
}
export type SidebarFooterElementType = HTMLDivElement;
export type SidebarFooterNewProps = Omit<CommonAndHTMLProps<SidebarFooterElementType>, keyof SidebarFooterCustomProps> & SidebarFooterCustomProps;
export declare const SidebarFooter: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLDivElement>, "isSticky"> & SidebarFooterCustomProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=SidebarFooter.d.ts.map