@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
17 lines (16 loc) • 667 B
TypeScript
import { NoticeConfig, ThemeProps } from "../../core/system/index.types.js";
import { HTMLStyledProps } from "../../core/components/index.types.js";
import "../../core/index.js";
import { NoticeStyle } from "./notice.style.js";
import { FC, RefObject } from "react";
//#region src/components/notice/notice-provider.d.ts
interface NoticeProviderProps extends HTMLStyledProps, NoticeConfig, ThemeProps<NoticeStyle> {
/**
* Container ref for the portal.
*/
containerRef?: RefObject<HTMLElement>;
}
declare const NoticeProvider: FC<NoticeProviderProps>;
//#endregion
export { NoticeProvider, NoticeProviderProps };
//# sourceMappingURL=notice-provider.d.ts.map