import { ExtractPropTypes, PropType } from 'vue'; import { BackgroundAttribute, ColorPickerOptions } from '../../../types'; export declare const defaultPackgroundData: { backgroundColor: string; backgroundImage: string; backgroundRepeat: string; backgroundPositionX: string; backgroundPositionY: string; backgroundSize: string; backgroundAttachment: string; opacity: number; }; export declare const defaultColorPickerOptions: { shape: string; pureColor: string; gradientColor: string; format: string; disableHistory: boolean; useType: string; placement: string; }; export declare const backgroundProps: { backgroundData: { type: PropType; required: boolean; }; fileUpload: FunctionConstructor; linkJump: FunctionConstructor; useAttachment: BooleanConstructor; labelCol: { type: PropType; default: number; }; wrapperCol: { type: PropType; default: number; }; colorPickerOptions: { type: PropType>; default: () => { shape: string; pureColor: string; gradientColor: string; format: string; disableHistory: boolean; useType: string; placement: string; }; }; }; export type BackgroundProps = Partial>;