import React from 'react'; import { DrawerPanelContentProps } from '@patternfly/react-core'; export declare const AcmDrawerContext: React.Context<{ drawerContext?: AcmDrawerProps | undefined; setDrawerContext: React.Dispatch>; }>; export declare function AcmDrawerProvider(props: { children: React.ReactNode | React.ReactNode[]; }): JSX.Element; export declare type AcmDrawerProps = { isExpanded?: boolean; onCloseClick?: () => void; title?: string | React.ReactNode; children?: React.ReactNode | React.ReactNode[]; panelContent?: React.ReactNode | React.ReactNode[]; panelContentProps?: DrawerPanelContentProps; }; export declare function AcmDrawer(props: AcmDrawerProps): JSX.Element;