import * as solid_js from 'solid-js'; import { ValidComponent } from 'solid-js'; import { ElementOf, PolymorphicProps } from './polymorphic/index.js'; interface AlertRootOptions { } interface AlertRootCommonProps { } interface AlertRootRenderProps extends AlertRootCommonProps { role: "alert"; } type AlertRootProps = AlertRootOptions & Partial>>; /** * Alert displays a brief, important message * in a way that attracts the user's attention without interrupting the user's task. */ declare function AlertRoot(props: PolymorphicProps>): solid_js.JSX.Element; declare const Alert: typeof AlertRoot; declare const index_Alert: typeof Alert; type index_AlertRootCommonProps = AlertRootCommonProps; type index_AlertRootOptions = AlertRootOptions; type index_AlertRootProps = AlertRootProps; type index_AlertRootRenderProps = AlertRootRenderProps; declare namespace index { export { index_Alert as Alert, index_AlertRootCommonProps as AlertRootCommonProps, index_AlertRootOptions as AlertRootOptions, index_AlertRootProps as AlertRootProps, index_AlertRootRenderProps as AlertRootRenderProps, AlertRoot as Root, }; } export { AlertRootOptions as A, AlertRootCommonProps as a, AlertRootRenderProps as b, AlertRootProps as c, AlertRoot as d, Alert as e, index as i };