import { type StyleValue } from 'vue';
export interface SignatureProps {
    rootStyle?: StyleValue;
    rootClass?: string;
    color?: string;
    lineWidth?: number;
    background?: string;
    fullScreen?: boolean;
    duration?: number;
    visible?: boolean;
    cancelText?: string;
    clearText?: string;
    confirmText?: string;
    customNavbar?: boolean;
    type?: 'png' | 'jpg';
    target?: 'dataURL' | 'filePath';
    quality?: number;
}
export declare const defaultSignatureProps: {
    lineWidth: number;
    fullScreen: boolean;
    color: string;
    duration: number;
    type: "png";
    target: "dataURL";
    quality: number;
};
export interface SignatureSlots {
    default?(props: Record<string, never>): any;
}
export interface SignatureEmits {
    (e: 'update:visible', visible: boolean): void;
    (e: 'confirm', dataURL: string): void;
    (e: 'clear'): void;
    (e: 'cancel'): void;
}
export interface SignatureExpose {
    resize: () => void;
    clear: () => void;
    confirm: () => void;
}
