import React from "react";
/**
 * Default drawer used in the CMS
 * @group Core
 */
export declare function DefaultDrawer({ className, style, }: {
    className?: string;
    style?: React.CSSProperties;
}): import("react/jsx-runtime").JSX.Element;
/**
 * This is the logo displayed in the drawer
 * It expands when the drawer is open.
 *
 * @param logo

 */
export declare function DrawerLogo({ logo }: {
    logo?: string;
}): import("react/jsx-runtime").JSX.Element;
