import { SourceGetPhotoType } from './CommonKitModule';
export interface PrintRequest {
    base64String: string;
}
export interface PrintResult {
    isSuccess: boolean;
    message?: string;
}
export interface PrintConfig {
    clientBillAddress?: string;
    clientBillLogo?: string;
    clientBillName?: string;
    clientBillPhone?: string;
}
export interface GetPhotoOptions {
    source: SourceGetPhotoType;
}
export declare type GetPhotoResult = string;
