import React, { PropsWithChildren } from "react"; export type DialogActionsProps = PropsWithChildren<{ align?: "left" | "right"; }>; export declare const DialogActions: ({ align, children }: DialogActionsProps) => React.JSX.Element;