import * as React from "react"; interface Props { readonly unpadded?: boolean; readonly actions: Array<{ label: string; action: (event: MouseEvent) => any; icon?: React.SVGAttributes; disabled?: boolean; }>; readonly appearance?: "primary" | "destructive"; } declare type ModalFooter = React.FunctionComponent; declare const ModalFooter: ModalFooter; export default ModalFooter;