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