import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type DocumentCreationAsset = IllustrationAsset<BaseSvgAsset & {
    readonly name: 'DocumentCreation';
}>;
/**
 * DocumentCreation illustration asset
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import DocumentCreation from '@payfit/unity-illustrations/assets/DocumentCreation'
 *
 * <Illustration
 *   illustration={DocumentCreation}
 *   alt="DocumentCreation illustration"
 *   size="md"
 * />
 * ```
 */
declare const DocumentCreation: DocumentCreationAsset;
export default DocumentCreation;
