import { FunctionalComponent } from '../../stencil-public-runtime'; interface AlertProps { message: string; salute?: string; spinner?: boolean; } declare const Alert: FunctionalComponent; export { Alert }; export default Alert;