import React from 'react';
type ImageWork = FileList | File | string | null | undefined;
export interface DrawerAssetFloatPropsModel {
image: ImageWork;
hideCloseICon?: boolean;
}
export declare const DrawerAssetFloat: React.FunctionComponent<DrawerAssetFloatPropsModel>;
export {};