import React from 'react';
type ImageWork = FileList | File | string | null | undefined;
export interface DrawerAssetFixedPropsModel {
    image: ImageWork;
    hideCloseIcon?: boolean;
    hideBackIcon?: boolean;
    hideEditIcon?: boolean;
    onClose?: () => void;
    onEdit?: () => void;
}
export declare const DrawerAssetFixed: React.FunctionComponent<DrawerAssetFixedPropsModel>;
export {};
