import type { JSX } from 'solid-js'; import type { HeadlessProps, ValidConstructor } from '../../utils/dynamic-prop'; export type AlertProps = HeadlessProps; /** * A live region for a message that needs attention as soon as it appears, such * as a form error. Assistive technology announces its content without moving * focus. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/alert.md} */ export declare function Alert(props: AlertProps): JSX.Element; //# sourceMappingURL=index.d.ts.map