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