///
/**
* The Toast component.
*
*```tsx
* import * as React from "react"
* import * as System from "@harborschool/lighthouse"
*
* export default () => {
* const [toastShow, setToastShow] = React.useState(false)
*
* return (
* <>
* setToastShow(!toastShow)}>Show Toast
*
* setToastShow(false)}
* />
* >
* )
* }
* ```
* @param show - boolean
* @param kind - "primary" | "secondary"
* @param message - string
* @param buttonText - string
* @param onButtonClick - (event: React.MouseEvent) => void
* @param overrides - \{ Wrap?: StyletronReact.StyleObject; Loading?: StyletronReact.StyleObject; ModalHeader?: StyletronReact.StyleObject; Title?: StyletronReact.StyleObject; ModalBody?: StyletronReact.StyleObject; Description?: StyletronReact.StyleObject; ModalFooter?: StyletronReact.StyleObject }
*/
export declare const Toast: React.FC;
export * from "./types";
import { ToastPropsT } from "./types";