import { Component, JSXElement } from 'solid-js';
import { Colors } from '../theme-provider/theme';
export type AlertType = 'accent' | 'success' | 'warning' | 'error' | 'dark' | 'bright';
export interface AlertProps {
    type?: AlertType;
    color?: keyof Colors;
    children?: JSXElement;
}
export declare const Alert: Component<AlertProps>;
