import React from "react";
/**
 * Left drawer props
 */
export type LeftDrawerProps = React.PropsWithRef<{
    /**
     * Show when md up
     */
    mdUp: boolean;
    /**
     * Organization
     */
    organization?: number;
    /**
     * Width
     */
    width: number;
    /**
     * Application name
     */
    appName?: string;
    /**
     * Logo URL
     */
    logoUrl?: string;
    /**
     * Is open or not
     */
    open?: boolean;
    /**
     * Minimize hanlder
     */
    onMinimize?: () => void;
}>;
export declare function LeftDrawer(props: React.PropsWithChildren<LeftDrawerProps>): import("react/jsx-runtime").JSX.Element;
