import * as React from "react"; import { type VariantProps } from "../../utils.js"; declare const dialogFooterVariants: (props?: ({ size?: "sm" | "md" | "lg" | "xl" | "full" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface DialogFooterProps extends React.HTMLAttributes, VariantProps { actions?: React.ReactNode; info?: React.ReactNode; } export declare const DialogFooter: ({ actions, info, className, size, ...props }: DialogFooterProps) => React.JSX.Element | null; export {};