| 1234567891011121314151617181920212223 | export declare const ActionBar: import("../utils").WithInstall<import("vue").DefineComponent<{    placeholder: BooleanConstructor;    safeAreaInsetBottom: {        type: BooleanConstructor;        default: true;    };}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{    placeholder: BooleanConstructor;    safeAreaInsetBottom: {        type: BooleanConstructor;        default: true;    };}>>, {    placeholder: boolean;    safeAreaInsetBottom: boolean;}>>;export default ActionBar;export type { ActionBarProps } from './ActionBar';declare module 'vue' {    interface GlobalComponents {        VanActionBar: typeof ActionBar;    }}
 |