import * as React from "react"; import type { DrawerProps } from "../../Drawer/index.js"; export interface DrawerFooterProps extends React.HTMLAttributes { actions?: React.ReactNode; info?: React.ReactNode; separator?: DrawerProps["footerSeparator"]; } export declare const DrawerFooter: ({ actions, info, className, separator, ...props }: DrawerFooterProps) => React.JSX.Element | null;