import { type FlexProps } from "@taroify/core/flex"; import type { SafeAreaPosition } from "@taroify/core/safe-area"; export interface ActionBarProps extends FlexProps { fixed?: boolean; safeArea?: SafeAreaPosition; placeholder?: boolean; } declare function ActionBar(props: ActionBarProps): JSX.Element; export default ActionBar;