fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
10 lines (9 loc) • 543 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../../Element/constants';
export interface ToastsWrapperCustomProps {
position?: "top" | "bottom";
}
export type ToastsWrapperElementType = HTMLDivElement;
export type ToastsWrapperProps = CommonAndHTMLProps<ToastsWrapperElementType> & ToastsWrapperCustomProps;
export declare const ToastsWrapper: React.ForwardRefExoticComponent<CommonAndHTMLProps<HTMLDivElement> & ToastsWrapperCustomProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=ToastsWrapper.d.ts.map