import { type PropType, type ExtractPropTypes } from 'vue'; import { isMobile } from '../utils'; export declare type ContactEditInfo = { tel: string; name: string; isDefault?: boolean; }; declare const contactEditProps: { isEdit: BooleanConstructor; isSaving: BooleanConstructor; isDeleting: BooleanConstructor; showSetDefault: BooleanConstructor; setDefaultLabel: StringConstructor; contactInfo: { type: PropType; default: () => ContactEditInfo; }; telValidator: { type: PropType<(val: string) => boolean>; default: typeof isMobile; }; }; export declare type ContactEditProps = ExtractPropTypes; declare const _default: import("vue").DefineComponent<{ isEdit: BooleanConstructor; isSaving: BooleanConstructor; isDeleting: BooleanConstructor; showSetDefault: BooleanConstructor; setDefaultLabel: StringConstructor; contactInfo: { type: PropType; default: () => ContactEditInfo; }; telValidator: { type: PropType<(val: string) => boolean>; default: typeof isMobile; }; }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("save" | "delete" | "change-default")[], "save" | "delete" | "change-default", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; default: () => ContactEditInfo; }; telValidator: { type: PropType<(val: string) => boolean>; default: typeof isMobile; }; }>> & { onSave?: ((...args: any[]) => any) | undefined; onDelete?: ((...args: any[]) => any) | undefined; "onChange-default"?: ((...args: any[]) => any) | undefined; }, { isSaving: boolean; isDeleting: boolean; showSetDefault: boolean; telValidator: (val: string) => boolean; isEdit: boolean; contactInfo: ContactEditInfo; }>; export default _default;