import type { GlobalTheme } from '../global'; declare const getToolbarTheme: (theme: GlobalTheme) => { colors: { background: string; border: string; primary: string; secondary: string; info: string; success: string; danger: string; disabled: string; iconButtonBackground: string; inputContainerBackground: string; text: string; placeholder: string; }; space: { verticalPadding: number; horizontalPadding: number; iconButtonLabelMarginLeft: number; iconButtonWrapperPadding: number; messageWrapperMarginHorizontal: number; messageWrapperPaddingVertical: number; messageWrapperPaddingHorizontal: number; messageInputPaddingHorizontal: number; messageInputPaddingVertical: number; affixInnerMargin: number; }; borderWidths: { default: number; }; sizes: { itemWrapperHeight: number; messageWrapperHeight: number; messageInputHeight: number; }; radii: { iconButtonWrapperBorderRadius: number; messageContainer: number; }; fontSizes: { text: number; }; fonts: { text: string; }; }; export default getToolbarTheme;