import React from "react";
export declare function DialogActions({ children, position, translucent, className }: {
    children: React.ReactNode;
    position?: "sticky" | "absolute";
    translucent?: boolean;
    className?: string;
}): React.JSX.Element;
