import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { DrawerProps } from './interfaces'; type DrawerInternalProps = DrawerProps & InternalBaseComponentProps; export declare function DrawerImplementation({ header, footer, children, loading, i18nStrings, disableContentPaddings, __internalRootRef, headerActions, ...restProps }: DrawerInternalProps): JSX.Element; export declare const createWidgetizedDrawer: (Loader?: typeof DrawerImplementation | undefined) => typeof DrawerImplementation; export {};