UNPKG
@ntragas/pouncejstest
Version:
latest (1.0.0)
1.0.0
A collection of UI components from Panther labs
github.com/panther-labs/pounce
panther-labs/pounce
@ntragas/pouncejstest
/
dist
/
esm
/
components
/
Alert
/
Alert.d.ts
8 lines
(7 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
import
{
ControlledAlertProps
}
from
'../utils/ControlledAlert'
;
export
declare
type
AlertProps
=
Omit
<
ControlledAlertProps
,
'open'
|
'onClose'
> & {
onClose
?:
() =>
void
; };
declare
const
_default
:
React
.
NamedExoticComponent
<
AlertProps
>;
export
default
_default;