import React from 'react'; import { KIND } from '../../tokens'; import { Box } from '../../layout/box'; interface AlertProps { kind?: (typeof KIND)[keyof typeof KIND]; } export declare const Alert: (props: AlertProps & React.ComponentProps) => React.JSX.Element; export {};