import React from 'react'; interface AlertProps { /** * Pass any valid jsx object in-between. */ children: React.ReactNode; /** * [info, error, success, none, dark], also any custom classes you want to pass */ theme?: 'error' | 'default' | 'dark' | 'success' | 'info' | 'none'; /** * [left, right, center] Alignment string */ align?: string; id?: string; } declare const Alert: ({ align, children, theme, id }: AlertProps) => JSX.Element; export default Alert;