9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface AlertDescriptionProps extends HTMLChakraProps<"div"> {
|
|
}
|
|
declare const AlertDescription: _chakra_ui_system.ComponentWithAs<"div", AlertDescriptionProps>;
|
|
|
|
export { AlertDescription, AlertDescriptionProps };
|