type Tones = 'success' | 'warning' | 'error' | 'info'; interface AlertProps { tone?: Tones; children?: string | Element; polite?: boolean; } declare const Alert: ({ tone, children, polite }: AlertProps) => string; export default Alert;