import * as React from 'react';
import type { File, AssetWithPopulatedCreatedBy } from '../../../../../../../shared/contracts/files';
interface AssetPreviewProps {
    asset: File | AssetWithPopulatedCreatedBy;
    actions?: React.ReactNode;
    isLoading?: boolean;
}
export declare const AssetPreview: ({ asset, actions, isLoading }: AssetPreviewProps) => import("react/jsx-runtime").JSX.Element;
export {};
