1 | import * as React from "react";
|
2 | import { IAlert } from "../Alert";
|
3 | import { BoxProps } from "../Box";
|
4 |
|
5 | interface ICallout {
|
6 | /**
|
7 | * The status of the callout
|
8 | */
|
9 | status?: IAlert["status"];
|
10 | /**
|
11 | * The variant of the callout
|
12 | */
|
13 | variant?: IAlert["variant"];
|
14 | }
|
15 |
|
16 | type CalloutProps = BoxProps & ICallout;
|
17 |
|
18 | /**
|
19 | * A react component used to alert users of a particular screen area that needs user action
|
20 | */
|
21 | declare const Callout: React.FC<CalloutProps>;
|
22 |
|
23 | export default Callout;
|