import { DrawerBodyProps, DrawerHeaderProps, DrawerHeaderTitleProps, DrawerProps } from "@fluentui/react-components";
import { DeepOmit } from "@kwiz/common";
import React from "react";
interface iProps {
    headerProps?: DrawerHeaderProps;
    headerTitleProps?: DrawerHeaderTitleProps;
    bodyProps?: DrawerBodyProps;
    title?: string | JSX.Element;
    titleActions?: JSX.Element;
}
type tProps = iProps & DeepOmit<DrawerProps, "title">;
export declare const DrawerEX: (props: React.PropsWithChildren<tProps> & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null;
export {};
