import { default as React, ComponentPropsWithoutRef } from 'react'; import { DividerProps } from '../Divider'; export interface HeaderActionGroupProps extends ComponentPropsWithoutRef<'div'> { /** * Provide content for actions */ children?: React.ReactNode; } declare function _HeaderActionGroup({ className, ...props }: HeaderActionGroupProps): import("react/jsx-runtime").JSX.Element; declare function HeaderActionGroupDivider(props: DividerProps): import("react/jsx-runtime").JSX.Element; export declare const HeaderActionGroup: React.NamedExoticComponent & { readonly type: typeof _HeaderActionGroup; } & { Divider: React.NamedExoticComponent & { readonly type: typeof HeaderActionGroupDivider; } & { displayName: string; }; displayName: string; }; export {};