import React from 'react'; export interface DrawerActionBarPropTypes { /** * The content of the ActionBar. */ children?: React.ReactNode; /** * Add additional classes to the TitleBar. */ className?: string; columns: object[], /** * Used for DOM testing. https://testing-library.com/docs/queries/bytestid/ */ dataTestId?: string; id?: string; style?: React.CSSProperties; } declare const DrawerActionBar: React.ComponentType; export default DrawerActionBar;