26 lines
969 B
TypeScript
26 lines
969 B
TypeScript
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 { actionBarProps } from './ActionBar';
|
|
export type { ActionBarProps } from './ActionBar';
|
|
export type { ActionBarThemeVars } from './types';
|
|
declare module 'vue' {
|
|
interface GlobalComponents {
|
|
VanActionBar: typeof ActionBar;
|
|
}
|
|
}
|