import { FunctionComponent } from "react"; export interface AlertProps { message: string; type: "warning"; } export declare const Alert: FunctionComponent;