import { PropsWithChildren } from 'react'; import { RibbonButtonProps } from './RibbonButton'; import { RibbonButtonOpenPanelProps } from './RibbonButtonOpenPanel'; import { RibbonSeparator } from './RibbonSeparator'; export type OpenPanelIconProps = RibbonButtonProps; export declare const OpenPanelIcon: ({ iconTitle, ...props }: RibbonButtonOpenPanelProps & { iconTitle?: string; }) => import("react").JSX.Element; export declare const ButtonIconHorizontalGroup: (props: PropsWithChildren) => import("react").JSX.Element; export declare const ButtonIconVerticalGroup: (props: PropsWithChildren) => import("react").JSX.Element; export declare const ButtonIconSeparator: typeof RibbonSeparator;