import type { ViewProps } from "@tarojs/components/types/View"; import type { CSSProperties, PropsWithChildren } from "react"; import type { ActionBarButtonShape } from "./action-bar.shared"; export interface ActionBarButtonGroupProps extends PropsWithChildren { style?: CSSProperties; shape?: ActionBarButtonShape; flex?: number; } declare function ActionBarButtonGroup(props: ActionBarButtonGroupProps): JSX.Element; export default ActionBarButtonGroup;